Giter Site home page Giter Site logo

Comments (7)

abidrahmank avatar abidrahmank commented on July 22, 2024

hi,

i am sorry about that. It was there earlier. Later it was decided to
include build folder in .gitignore. But i forgot to edit readme. Thank
you for pointing it out.

On 8/6/13, justsayno [email protected] wrote:

Hi,

The readme says that a build foder exists... But it does not appear to be
there. only a source folder. Obviously I can still access you files but
would be great to have this explained!


Reply to this email directly or view it on GitHub:
#1

Abid K.

from opencv2-python-tutorials.

sethreidnz avatar sethreidnz commented on July 22, 2024

Thats fine. Your python code has been invaluable never the less!

Seth reid
On 6/08/2013 7:50 PM, "Abid K" [email protected] wrote:

hi,

i am sorry about that. It was there earlier. Later it was decided to
include build folder in .gitignore. But i forgot to edit readme. Thank
you for pointing it out.

On 8/6/13, justsayno [email protected] wrote:

Hi,

The readme says that a build foder exists... But it does not appear to be
there. only a source folder. Obviously I can still access you files but
would be great to have this explained!


Reply to this email directly or view it on GitHub:
#1

Abid K.


Reply to this email directly or view it on GitHubhttps://github.com//issues/1#issuecomment-22163059
.

from opencv2-python-tutorials.

sethreidnz avatar sethreidnz commented on July 22, 2024

I have to say, thank you so much for your code, it has made it imesurably
easier to figure this stuff out as I am learning python while also learning
openCV and trying to get this all to work on a raspberry pi.

Thanks

Seth Reid

On Tue, Aug 6, 2013 at 7:50 PM, Abid K [email protected] wrote:

hi,

i am sorry about that. It was there earlier. Later it was decided to
include build folder in .gitignore. But i forgot to edit readme. Thank
you for pointing it out.

On 8/6/13, justsayno [email protected] wrote:

Hi,

The readme says that a build foder exists... But it does not appear to be
there. only a source folder. Obviously I can still access you files but
would be great to have this explained!


Reply to this email directly or view it on GitHub:
#1

Abid K.


Reply to this email directly or view it on GitHubhttps://github.com//issues/1#issuecomment-22163059
.

from opencv2-python-tutorials.

abidrahmank avatar abidrahmank commented on July 22, 2024

Thank you for your support !!!

By the way, If you find any mistakes (whether it is small spelling mistakes or big theory or code errors), feel free to correct it and send a PR. I am making these tutorials in a hurry so it is always prone to mistakes (especially since I am a non-English speaker). As a community, we can prepare a good set of tutorials that benefits all.

Regards

Abid K.

from opencv2-python-tutorials.

sethreidnz avatar sethreidnz commented on July 22, 2024

Yeah I'd be happy to fix up some of the English for you. I will do it when
I have time before my current research scholaship is finished. Would you
want me to just send you how I think it should be worded? On the tutorials
I have done.

Also do you know why there are not cv2 bindings for all of the cv
funcitons. Or is there and google is letting me down. I am trying to find
functions like cv.MoveWindow and cv.SaveImage but I cannot find a
cv2.saveImage or anything like that.

Thanks

Seth

On Thu, Aug 8, 2013 at 4:02 PM, Abid K [email protected] wrote:

Thank you for your support !!!

By the way, If you find any mistakes (whether it is small spelling
mistakes or big theory or code errors), feel free to correct it and send a
PR. I am making these tutorials in a hurry so it is always prone to
mistakes (especially since I am a non-English speaker). As a community, we
can prepare a good set of tutorials that benefits all.

Regards

Abid K.


Reply to this email directly or view it on GitHubhttps://github.com//issues/1#issuecomment-22300754
.

from opencv2-python-tutorials.

abidrahmank avatar abidrahmank commented on July 22, 2024

Hi,

I will be really glad if you could send the corrections ASAP. ( I know my English really sucks :) It will be better if you could send it as a Pull Request.

OpenCV was initially made in C. cv functions are python bindings of those C functions.

Later C++ and its OOP concepts became popular, so OpenCV started migrating to it. So C++ functions were wrapped as cv2 functions.

So there is no necessity that C and C++ functions are with same name. For example, SaveImage is changed to imwrite (if I remember correctly). So cv.SaveImage() became cv2.imwrite(). cv.LoadImage() became cv2.imread().

These C++ internally depends on old C and they are trying to reduce the dependancy to zero. They are trying to move everything to C++ now and that is OpenCV 3.x is mainly about. They say it makes a lot of things easier. As a result, when OpenCV 3 comes, there will be no cv functions, only cv2.

Abid K

from opencv2-python-tutorials.

sethreidnz avatar sethreidnz commented on July 22, 2024

Yes I found that function after a while. It makes it ver confusing
sometimes though! I understand now.

I will try to do it asap. I have no experience using git hub as a commiter
so it would be good practice to do this. I finish my research in oct and
will get it done by then. I also have been workingbon a version of your
contour class that does not pre populatw contour features. This is for
performance reasons on a raspberry pi.

Thanks again. I will help where I can because I feel gratefull for your
help with there tuts.

Regards

Seth
On 19/08/2013 5:52 PM, "Abid K" [email protected] wrote:

Hi,

I will be really glad if you could send the corrections ASAP. ( I know my
English really sucks :) It will be better if you could send it as a Pull
Request.

OpenCV was initially made in C. cv functions are python bindings of those
C functions.

Later C++ and its OOP concepts became popular, so OpenCV started migrating
to it. So C++ functions were wrapped as cv2 functions.

So there is no necessity that C and C++ functions are with same name. For
example, SaveImage is changed to imwrite (if I remember correctly). So
cv.SaveImage() became cv2.imwrite(). cv.LoadImage() became cv2.imread().

These C++ internally depends on old C and they are trying to reduce the
dependancy to zero. They are trying to move everything to C++ now and that
is OpenCV 3.x is mainly about. They say it makes a lot of things easier. As
a result, when OpenCV 3 comes, there will be no cv functions, only cv2.

Abid K


Reply to this email directly or view it on GitHubhttps://github.com//issues/1#issuecomment-22852235
.

from opencv2-python-tutorials.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.