2020-12-10 13:36:37 -0600 | received badge | ● Notable Question (source) |
2019-05-10 17:06:55 -0600 | received badge | ● Popular Question (source) |
2019-04-05 09:25:21 -0600 | received badge | ● Popular Question (source) |
2019-04-03 09:43:28 -0600 | received badge | ● Popular Question (source) |
2018-10-08 02:49:04 -0600 | commented answer | Problem getting Mat from GigE camera (Sapera SDK) Instead of loading the image you will need to access the one from your camera. You can easily transform IpLImage to Mat |
2018-10-08 02:43:21 -0600 | commented answer | Problem getting Mat from GigE camera (Sapera SDK) Sorry guys for late answer. I am currently using Common Vision Blox library and using python it is very easy https://for |
2018-01-10 02:42:55 -0600 | commented answer | Problem getting Mat from GigE camera (Sapera SDK) Hi danielwaldhauser. I didn't do it yet but I will put up one till the end of this month. Please send me your email and |
2018-01-10 02:38:52 -0600 | commented answer | Android Canny problem No implementation found Hi Yusaf. When working with android project you can just import specific version of opencv library to your project. Plea |
2017-09-10 16:31:22 -0600 | received badge | ● Student (source) |
2017-08-16 01:41:53 -0600 | commented answer | What are some known backends that work well with a TeleDyne Dalsa Linea Camera? No problem. I was trying to do sth with But I don't have a working example so I must have given up when received CVB library. If you figure it out please post the solution if you can. |
2017-08-15 15:22:04 -0600 | commented question | Hello, there! I am a beginner I was wondering if there is any documentation that explain the method on openCV for java. For instance: "get()" method from "Mat" class. Hi, please check out OpenCV 3.0 Computer Vision with Java book from packtpub - has low reviews but I believe it contains 80% of knowledge for basic usage of OpenCV in Java. It comes with examples in java in resources (you can download them from the book site). Usually you can just take any c++/python code and use Java opencv doc to verify what is the implementation of the method in Java. At least that how I am managing it. |
2017-08-15 15:14:26 -0600 | commented answer | What are some known backends that work well with a TeleDyne Dalsa Linea Camera? I suppose it means Mat or iplimage structure. I will try to give you an example but cant promise anything since I don't recall if I have managed it or not. |
2017-08-15 02:59:36 -0600 | answered a question | Android Canny problem No implementation found Changed OpenCV to 3.1 version and canny works again. |
2017-08-14 16:25:31 -0600 | commented question | OpenCV with Eclipse Oxygen on Windows10 64bit Well I thought that too but it is really easy too use if you give it time. |
2017-08-14 16:17:31 -0600 | answered a question | What are some known backends that work well with a TeleDyne Dalsa Linea Camera? Hi, To be able to use this camera you have to download Sapera LT 8.12 SDK (or whatever version there is now). As this SDK for me was real pain to use I have used CVB libraries that I have got from my camera provider. Anyway this is what I got from Teledyne support:
I hope it will help you. |
2017-08-14 15:55:54 -0600 | commented question | OpenCV with Eclipse Oxygen on Windows10 64bit Hi. How about you try using visual studio 2015 ? There is a tutorial on how to import opencv libraries to this ide just need to change *.lib names in linker if you will use opencv 3. |
2017-08-14 15:43:28 -0600 | answered a question | Android Canny problem No implementation found Apparently I had to declare as global and initialize them in biggestContourSegmentation() method. Declaring them inside this method gave an error. |
2017-08-14 06:06:59 -0600 | commented answer | What method to use for detecting irregular black blobs? Thanks but since some of the blobs are false-positives I really would like someone to suggest a method that can be fed a learning set of images. I am not very advanced in such tasks but I will start with kNN classification algorithm and see how it goes. |
2017-08-14 06:02:37 -0600 | commented question | What method to use for detecting irregular black blobs? My original image is just a plastic form with holes in it. You put fruits in it and backlight shines through them. I just cut out the holes and put them onto a black backgroud so it is easier to see the different holes. The placement is static so the holes are at the same places. |
2017-08-14 02:17:31 -0600 | asked a question | What method to use for detecting irregular black blobs? Hi, I would like to detect if there is a black blob in a picture below (school project for detecting defects in fruits): Right now I just detect if there is a circulat shape (houghcircles) and put 1 if there is and 0 if not - it isn't very accurate. I have to detect the black blobs but some of the blobs are false positive. I have been thinking about teaching an algorithm the good and bad pictures to get the best accuracy. I have only used knn for digit detection would it be a good choice to use it in this exercise? Can you suggest anything other to use? Thank you! |
2017-08-13 13:19:09 -0600 | commented answer | Android Canny problem No implementation found Unfortunately I think it is not the problem. My code is: I do believe that it uses form Imgproc package and the native class that java calls is actually taking long values: |
2017-08-11 10:11:24 -0600 | asked a question | Android Canny problem No implementation found Hi, I am trying to modify application "Second sight" from the book Android Application Programming with OpenCV 3 first camera (app works fine ). (Android 7.0 OpenCV 3.3 ) I am using to load the library. Everything works (Mat, imgproc.cvtcolor) except imgproc.Canny (possibly more) When I call I get
Why is it not working? Please help. |
2017-08-02 07:09:05 -0600 | answered a question | Text Detection in Java Example Hi, I would suggest you read this post How to use KNearest in java?. To actually use it you would need a learning set for text something like this THE MNIST DATABASE of handwritten digits. Last case is to prepare your image as a (this is for digits.png in the 1st link) thresholded 20x20 square with white digit/letter in the middle of the square. I too struggle sometimes with lack of examples for Java. Usually the easiest is to convert Python examples. |
2017-08-02 06:39:37 -0600 | marked best answer | Java BRIEF I am learning OpenCV 3.x using java and came across problem using BRIEF detector: This results in OpenCV Error: Bad argument (Specified descriptor extractor type is not supported.) Is there a mistake in my code or is BRIEF really not supported? Thanks. |