-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Port to C++] Blob Detection #85
Conversation
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Khushi-Balia, requesting the below changes.
- Add table of content in the Readme
- Rename readme.md to
README.md
- Refer convolution and filtering code structure ie have a
src
,include
folders. - Refer convolution and filtering code files and follow the similar fashion for adding the comments for the functions
- Remove the unnecessary
blob
file and not required files from the folder.
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Made the required changes. |
- [Understanding the code](#understanding-the-code) | ||
- [Detecting the blob](#detecting-the-blob) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can be more informative if the contents in the Readme can be divided into the different topic sections similar to this
|
||
tuple<double, double, double> getMedianPixelValues(Mat img); | ||
|
||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a new line
} | ||
|
||
return 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a newline
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Updated the Readme and made the changes. |
@Khushi-Balia when we run the code for blob detection the window that pops-up is nearly my screen size, so just make it resizable and keep initial size of window smaller for better handling |
@Khushi-Balia, in the Readme content there are certain part which referred to python functions. Kindly update them. Also move |
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Made the windows resizable, updated the readme and file structure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Add a instruction of how to run the code in the Readme.
- Below is the error encountered while running the script. I think @aPR0T0 also faced the similar issue.
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Resolved the error, made the necessary changes in the Makefile. |
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
@Khushi-Balia, resize is not working. I guess you need to first define the window then resize it. |
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Changed the window size and updated the readme. |
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
@Khushi-Balia, update the PR according to the new file structure. |
Signed-off-by: Khushi-Balia <khhbalia@gmail.com>
Resolve #51