Skip to content

Commit bc2dd85

Browse files
Update links
1 parent b56645c commit bc2dd85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ virtual bool processFrame(cr::video::Frame& frame) = 0;
313313

314314
| Parameter | Description |
315315
| --------- | ------------------------------------------------------------ |
316-
| frame | Video frame for processing. Video tracker processes only RAW pixel formats (BGR24, RGB24, GRAY, YUYV24, YUYV, UYVY, NV12, NV21, YV12, YU12, see [Frame](https://rapidpixel.constantrobotics.com/docs/service-libraries/frame.html) class description). Video trackers should implement all RAW pixel format listed above. |
316+
| frame | Video frame for processing. Video tracker processes only RAW pixel formats (BGR24, RGB24, GRAY, YUYV24, YUYV, UYVY, NV12, NV21, YV12, YU12, see [Frame](https://rapidpixel.constantrobotics.com/docs/Service/Frame.html) class description). Video trackers should implement all RAW pixel format listed above. |
317317

318318
**Returns:** TRUE is the video frame was processed FALSE if not. If video tracker not in tracking mode the method should return TRUE.
319319

@@ -330,7 +330,7 @@ virtual void getImage(int type, cr::video::Frame& image) = 0;
330330
| Parameter | Description |
331331
| --------- | ------------------------------------------------------------ |
332332
| type | Image type. Depends on implementation. |
333-
| frame | Output frame (see [Frame](https://rapidpixel.constantrobotics.com/docs/service-libraries/frame.html) class description). Pixel format depends on implementation. |
333+
| frame | Output frame (see [Frame](https://rapidpixel.constantrobotics.com/docs/Service/Frame.html) class description). Pixel format depends on implementation. |
334334
335335
336336
@@ -626,7 +626,7 @@ enum class VTrackerParam
626626

627627
## VTrackerParams class declaration
628628

629-
**VTrackerParams** class used for video tracker initialization (**initVTracker(...)** method) or to get all actual params and tracking results (**getParams()** method). Also **VTrackerParams** provide structure to write/read params from JSON files (**JSON_READABLE** macro, see [ConfigReader](https://rapidpixel.constantrobotics.com/docs/service-libraries/config-reader.html) class description) and provides methods to encode and decode params. Class declaration:
629+
**VTrackerParams** class used for video tracker initialization (**initVTracker(...)** method) or to get all actual params and tracking results (**getParams()** method). Also **VTrackerParams** provide structure to write/read params from JSON files (**JSON_READABLE** macro, see [ConfigReader](https://rapidpixel.constantrobotics.com/docs/Service/ConfigReader.html) class description) and provides methods to encode and decode params. Class declaration:
630630

631631
```cpp
632632
class VTrackerParams
@@ -934,7 +934,7 @@ if (!out.decode(data, size))
934934

935935
## Read params from JSON file and write to JSON file
936936

937-
**VTracker** library depends on [ConfigReader](https://rapidpixel.constantrobotics.com/docs/service-libraries/config-reader.html) library which provides methods to read parameters from a JSON file and to write parameters to a JSON file. Example of writing to and reading from a JSON file:
937+
**VTracker** library depends on [ConfigReader](https://rapidpixel.constantrobotics.com/docs/Service/ConfigReader.html) library which provides methods to read parameters from a JSON file and to write parameters to a JSON file. Example of writing to and reading from a JSON file:
938938

939939
```cpp
940940
// Prepare random parameters.

0 commit comments

Comments
 (0)