Skip to content

Commit 585c2f1

Browse files
committed
Update README.md
1 parent e13c9dc commit 585c2f1

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/detection.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Detection::Detection(const YAML::Node &config) : Model(config) {
1717
}
1818

1919
void Detection::Inference(const std::string &input_path, const cv::String &save_path, const bool video) {
20+
// TODO: fix bugs for video inference.
2021
cv::VideoCapture capture;
2122
capture.open(input_path);
2223
cv::Size size = cv::Size((int)capture.get(cv::CAP_PROP_FRAME_WIDTH), (int)capture.get(cv::CAP_PROP_FRAME_HEIGHT));

src/instance_segmentation.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ InstanceSegmentation::InstanceSegmentation(const YAML::Node &config) : Model(con
1818
}
1919

2020
void InstanceSegmentation::Inference(const std::string &input_path, const cv::String &save_path, const bool video) {
21+
// TODO: fix bugs for video inference.
2122
cv::VideoCapture capture;
2223
capture.open(input_path);
2324
cv::Size size = cv::Size((int)capture.get(cv::CAP_PROP_FRAME_WIDTH), (int)capture.get(cv::CAP_PROP_FRAME_HEIGHT));

0 commit comments

Comments
 (0)