Ask Your Question

acgtyrant's profile - activity

2017-03-16 02:26:14 -0600 commented question What is the license of OpenCV documentations?

@LBerger This post does not answer about the license of documentations.

2017-03-16 00:54:54 -0600 asked a question What is the license of OpenCV documentations?

I want to add this documentation to devdocs.io, but the documentation's license must permit alteration, redistribution and commercial use.

2017-03-16 00:54:37 -0600 asked a question What is the license of OpenCV documentations?

I want to add this documentation to devdocs.io, but the documentation's license must permit alteration, redistribution and commercial use.

2017-02-20 19:48:31 -0600 commented answer LBP for vehicle detection

How to do hard negative mining? The false positive created by detector can not use as negative immediately while the opencv_traincascade will use a slide window to extracted all candidates from the negative image. I have tried to scale the false positive down to the window size, but I find that the opencv_traincascade does not think this is a valid negative so does not take it into training.

I'm looking forward for your help, thank you very much!

2016-03-11 02:11:23 -0600 received badge  Enthusiast
2016-01-31 21:12:27 -0600 asked a question opencv_createsamples always show sample when I set `-show` to NO

Here is my script:

def main():
    subprocess.call([
            'opencv_createsamples',
            '-info', label_pathname,
            '-vec', vec_pathname,
            '-num',  str(positive_samples_count),  # not that it is int!
            '-w', str(positive_sample_scale),  # not that it is int!
            '-h', str(positive_sample_scale),  # not that it is int!
            '-show', 'NO'])

if __name__ == "__main__":
    main()

And I execute it, it still shows the sample! I have to pressing Esc will continue the samples creation process without. So what is wrong? Thank you!

uname -a: Linux YY 3.19.0-15-generic #15-Ubuntu SMP Thu Apr 16 23:32:37 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux.

OpenCV version: 2.4.9

2016-01-31 21:12:11 -0600 asked a question opencv_createsamples always show sample when I set `-show` to NO

Here is my script:

def main():
    subprocess.call([
            'opencv_createsamples',
            '-info', label_pathname,
            '-vec', vec_pathname,
            '-num',  str(positive_samples_count),  # not that it is int!
            '-w', str(positive_sample_scale),  # not that it is int!
            '-h', str(positive_sample_scale),  # not that it is int!
            '-show', 'NO'])

if __name__ == "__main__":
    main()

And I execute it, it still shows the sample! I have to pressing Esc will continue the samples creation process without. So what is wrong? Thank you!

uname -a: Linux YY 3.19.0-15-generic #15-Ubuntu SMP Thu Apr 16 23:32:37 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux.

OpenCV version: 2.4.9

2016-01-22 01:30:39 -0600 commented question What does the header files respectively use for?

@berak You are right, but I no not want to include too many header files while I use only a little API.

2016-01-22 01:14:21 -0600 asked a question What does the header files respectively use for?

I can not find any documentations about header files, so I do not know which header file should I include when I use some OpenCV API.

By the way, I find the the Rect class in core/core.hpp and the operator & function which accept two Rects objects in core/operations.hpp. But the core/operations.hpp does not include the core/core.hpp, so if I want to define two Rect objects and use the operator & function`, I should include these two header files manually? Is there the other header file can include them instead at once?

2016-01-22 01:14:03 -0600 asked a question What does the header files respectively use for?

I can not find any documentations about header files, so I do not know which header file should I include when I use some OpenCV API.

By the way, I find the the Rect class in core/core.hpp and the operator & function which accept two Rects objects in core/operations.hpp. But the core/operations.hpp does not include the core/core.hpp, so if I want to define two Rect objects and use the operator & function`, I should include these two header files manually? Is there the other header file can include them instead at once?

2016-01-22 01:07:22 -0600 received badge  Scholar (source)
2016-01-21 02:21:16 -0600 received badge  Student (source)
2016-01-21 00:40:57 -0600 asked a question What does OpenCV Python interface miss some key classes?

I am writing a Python script, and I am shocked that I find that there is no such cv2.Mat and cv2.Rect classes, so that I can not construct variables.

I do not understand why does Python interface miss these key classes.

2016-01-19 01:45:38 -0600 received badge  Supporter (source)