Skip to content

Commit cd15964

Browse files
Update links
1 parent cb777a1 commit cd15964

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ virtual bool detect(cr::video::Frame& frame) = 0;
286286

287287
| Parameter | Description |
288288
| --------- | ------------------------------------------------------------ |
289-
| frame | Video frame for processing. Object detector 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). Required pixel format depends on implementation. It is recommended to support all possible RAW pixel formats supported by [Frame](https://rapidpixel.constantrobotics.com/docs/service-libraries/frame.html) object. |
289+
| frame | Video frame for processing. Object detector 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). Required pixel format depends on implementation. It is recommended to support all possible RAW pixel formats supported by [Frame](https://rapidpixel.constantrobotics.com/docs/Service/Frame.html) object. |
290290

291291
**Returns:** TRUE if the video frame was processed or FALSE if not. If object detector disabled (see [ObjectDetectorParam](#objectdetectorparam-enum) enum description) the method should return TRUE.
292292

@@ -302,7 +302,7 @@ virtual bool setMask(cr::video::Frame mask) = 0;
302302
303303
| Parameter | Description |
304304
| --------- | ------------------------------------------------------------ |
305-
| mask | Detection mask is see [Frame](https://rapidpixel.constantrobotics.com/docs/service-libraries/frame.html) object with GRAY pixel format. Detector omits image segments, where detection mask pixel values equal 0. |
305+
| mask | Detection mask is see [Frame](https://rapidpixel.constantrobotics.com/docs/Service/Frame.html) object with GRAY pixel format. Detector omits image segments, where detection mask pixel values equal 0. |
306306
307307
**Returns:** TRUE if the detection mask was set or FALSE if not.
308308
@@ -590,7 +590,7 @@ struct Object
590590

591591
## ObjectDetectorParams class declaration
592592

593-
**ObjectDetectorParams** class used for object detector initialization (**initObjectDetector(...)** method) or to get all actual params (**getParams()** method). Also **ObjectDetectorParams** provides 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 provide methods to encode (serialize) and decode (deserialize) params. Class declaration:
593+
**ObjectDetectorParams** class used for object detector initialization (**initObjectDetector(...)** method) or to get all actual params (**getParams()** method). Also **ObjectDetectorParams** provides structure to write/read params from JSON files (**JSON_READABLE** macro, see [ConfigReader](https://rapidpixel.constantrobotics.com/docs/Service/ConfigReader.html) class description) and provide methods to encode (serialize) and decode (deserialize) params. Class declaration:
594594

595595
```cpp
596596
class ObjectDetectorParams

0 commit comments

Comments
 (0)