2017-08-03 15:37:41 -0600 | received badge | ● Notable Question (source) |
2016-07-20 19:21:10 -0600 | received badge | ● Popular Question (source) |
2013-05-15 11:42:26 -0600 | commented answer | imread in iOS I had not thought to read the image using UIImage. It works, thanks. |
2013-05-14 13:25:33 -0600 | asked a question | imread in iOS Hi all, I'm working with OpenCV 2.4.3 in iOS. I want to read an image, so I use imread() function, but result Mat image is always empty. destPath is a Documets subfolder (/Documents/ImgSVM/) and imgSVMLista[] is a vector with images filename. So, nsFileName is, for example, <...>/Documents/ImgSVM/Img1.jpg. Well, img is alway empty. As you can see rows and cols are 0 (The screenshot of the log was taken after the reading of the image). This is an example of image I want to read: Any suggestion? Costantino |
2013-05-14 13:04:56 -0600 | commented answer | Color constancy in different illumination condition Thanks a lot Costantino |
2013-04-22 14:15:21 -0600 | received badge | ● Student (source) |
2013-04-18 03:39:04 -0600 | asked a question | How to identify an image once in a video sequence? Hi all. |
2013-04-12 13:43:09 -0600 | received badge | ● Supporter (source) |
2013-04-12 13:29:52 -0600 | received badge | ● Scholar (source) |
2013-04-12 13:29:47 -0600 | commented answer | How to show UIImage in processImage:(Mat&)image method It works, thanks a lot. |
2013-04-07 15:23:06 -0600 | commented answer | How to show UIImage in processImage:(Mat&)image method processImage is called. In fact in this method I perform many operations (space color conversion from RGB to HVS, find contour, shape detection and grabCut) and I see result of operations. |
2013-04-07 13:47:11 -0600 | commented question | How to show UIImage in processImage:(Mat&)image method This is Objective-C code. I followed this tutorial http://docs.opencv.org/doc/tutorials/ios/video_processing/video_processing.html#opencviosvideoprocessing and in "processImage:(Mat&)image" method I used grabCut() function. So, I converted cv::Mat resulting image in UIImage structure to display it in UIImageView (imgViewSegnale in the code that I wrote before ). Well, the captured image is not displayed. So I tried to display a "static" image (testImage.png) instead of the captured image, but nothing. (I'm sorry but I do not know English very well and I find it hard to express myself) |
2013-04-07 12:50:15 -0600 | received badge | ● Editor (source) |
2013-04-07 12:49:23 -0600 | asked a question | How to show UIImage in processImage:(Mat&)image method Hi all, I want to show a UIImage in processImage:(Mat&)image method, but it does not work. I used this code: If I add this code in viewDidLod method, it works. Also work if I add this code in a (IBAction) method (using a button). But it don't work if I add this code in processImage:(Mat&)image method. Any suggestion? Best regards Costantino |
2013-03-13 10:16:43 -0600 | commented answer | Color constancy in different illumination condition Thanks for the reply. Costantino |
2013-03-13 10:16:07 -0600 | answered a question | Color constancy in different illumination condition Thanks for the reply. Costantino |
2013-03-12 13:22:41 -0600 | asked a question | Color constancy in different illumination condition Hi all. In a paper I'm reading is written: "RGB images taken from the camera are first passed through a pre-processing stage which helps to maintain the colour constancy in different illumination conditions." (focus is road signs recognition in a real time system). Is there a method in OpenCV to do this? Best regards Costantino |