Ask Your Question

asdhjk's profile - activity

2018-08-28 11:53:13 -0600 received badge  Notable Question (source)
2017-08-05 03:54:03 -0600 received badge  Popular Question (source)
2015-11-29 12:15:08 -0600 asked a question Find object in video

Hi everybody I work about videos and I wote a code for finding eyes and face It is succesfully but I want to find another object in video For instance blue shoes There is a video and I should blue shoes and how many blue shoes But I dont know how ı can do it Any advice or any example Thanks advice

2015-11-17 10:39:10 -0600 commented question How to find text in image

in addition ı use opencv 2.4.6 how can ı integrate

2015-11-17 10:12:18 -0600 commented question How to find text in image

Im sorry I can 't use pre code tag

2015-11-17 10:09:04 -0600 commented question How to find text in image

Thanks for your advance Actually I can find text in image but I want to save this text in .txt format My code here:

#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>

using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
    Mat large = imread("test_002.jpg");
    Mat rgb;
    // downsample and use it for processing
    pyrDown(large, rgb);
    Mat small;
    cvtColor(rgb, small, CV_BGR2GRAY);
    // morphological gradient
    Mat grad;
    Mat morphKernel = getStructuringElement(MORPH_ELLIPSE, Size(3, 3));
    morphologyEx(small, grad, MORPH_GRADIENT, morphKernel);
2015-11-15 22:37:12 -0600 asked a question How to find text in image

Hi everybody I want to find text in image but how can ı can do it ? Firstly I have done rectangle for text and done it succesfully but I dont know how ı can improve this and ı can save only text another image Can I use artifical intellegance for this project If ı can it which method Thanks advance