Ask Your Question

pariwesh07's profile - activity

2021-06-15 09:12:25 -0600 received badge  Notable Question (source)
2019-01-20 21:41:05 -0600 received badge  Popular Question (source)
2016-10-26 04:29:34 -0600 asked a question how to open windows 10 mobile camera

how to open windows 10 mobile camera in opencv and storing image in picture gallery

2016-10-25 06:19:36 -0600 commented question can i use opencv in all x64,x86 and arm form

so can i use opencv for windows10 mobile app. or any image comparison method which is latest in market which you know.

2016-10-25 06:11:21 -0600 commented question can i use opencv in all x64,x86 and arm form

Is it Possible or do you have any idea to do that

2016-10-25 05:57:24 -0600 asked a question can i use opencv in all x64,x86 and arm form

i am using Image Alignment Algorithmslink text in uwp application and i want it should run in all three form(x64,x86 and ARM).how could i achieve it specially while deploying this in windows10 mobile or tab.

2016-10-24 02:43:40 -0600 received badge  Editor (source)
2016-10-24 02:43:03 -0600 asked a question how to scan an image through windows10 mobile camera in uwp

i want to scan an image through windows 10 mobile camera in uwp and then comparing it with original image. How to do that.

2016-08-23 07:00:15 -0600 asked a question which version of opencv should i use with visual studio 2015

hi,

which version of opencv should i use with visual studio 2015

2016-08-22 12:03:46 -0600 received badge  Student (source)
2016-08-22 05:39:09 -0600 commented answer identifier 'imshow' and 'waitkey' is undefined

actually i am using vs 2015,windows 10 and using nuget package manager for installing opencv referlink text

2016-08-22 05:19:12 -0600 commented question identifier 'imshow' and 'waitkey' is undefined

Thx a lot for your initiative to help me. i am checking out with sample if any issue i will contact you LBerger.

2016-08-22 05:03:18 -0600 commented answer identifier 'imshow' and 'waitkey' is undefined

i tried but it is giving me following error: Severity Code Description Project File Line Suppression State Error LNK1181 cannot open input file 'opencv_calib3d310.lib'

2016-08-22 04:43:38 -0600 commented question identifier 'imshow' and 'waitkey' is undefined

check this you will understand nuget link text

2016-08-22 04:32:45 -0600 commented question identifier 'imshow' and 'waitkey' is undefined

Thx for above information . Itried with the above code but following error is coming Severity Code Description Project File Line Suppression State Error LNK1181 cannot open input file 'opencv_calib3d310.lib'

2016-08-22 04:02:32 -0600 commented answer identifier 'imshow' and 'waitkey' is undefined

i have included #include<opencv\highgui.h> but still error exist.

2016-08-22 03:41:06 -0600 commented question identifier 'imshow' and 'waitkey' is undefined

my os is windows 10 and i am using nuget package manager to install opencv package it is v0.0.2-alpha and what is '101010' i am not getting can you elaborate.

2016-08-22 02:03:19 -0600 asked a question identifier 'imshow' and 'waitkey' is undefined

Hi,

I am trying to open the camera through opencv using 'uwp c++ blank template' in vs 2015. but i am getting error identifier 'imshow' is undefined and identifier 'waitkey' is undefined . i also install nuget package .which package did i exactly missing. code below

#include "pch.h"
#include<opencv2\opencv.hpp>
#include "MainPage.xaml.h"


using namespace OpenCam_22aug;

using namespace Platform;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::UI::Xaml::Controls::Primitives;
using namespace Windows::UI::Xaml::Data;
using namespace Windows::UI::Xaml::Input;
using namespace Windows::UI::Xaml::Media;
using namespace Windows::UI::Xaml::Navigation;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
using namespace cv;
MainPage::MainPage()
{
    InitializeComponent();
}
int main(int argc, char** argv)
{
    VideoCapture cap;
    // open the default camera, use something different from 0 otherwise;
    // Check VideoCapture documentation.
    if (!cap.open(0))
        return 0;
    for (;;)
    {
        Mat frame;
        cap >> frame;
        if (frame.empty()) break; // end of video stream
        imshow("this is you, smile! :)", frame);
        if (waitKey(1) == 27) break; // stop capturing by pressing ESC 
    }
    // the camera will be closed automatically upon exit
    // cap.close();
    return 0;
}
2016-08-09 06:02:12 -0600 asked a question how to setup windows universal app using open cv

hi,

i want to design a windows universal app using opencv how to step all things.

2016-08-06 00:17:57 -0600 received badge  Enthusiast
2016-08-04 05:29:29 -0600 commented question scan a particular image through camera and compare with with original

i want build an app which work as follows 1.open the app 2.Scan the image whose video is already created . 3.If the scan image match with the original image 4.then play the video related to that image. how could i create could you help me on that.

2016-07-29 04:20:20 -0600 asked a question scan a particular image through camera and compare with with original

Hi,

1.Scan a image through the camera and that image matches with original image. i mean after scanning it should match with original

how could i create could anybody help me on that.

2016-07-27 04:49:34 -0600 commented question error LNK1104: cannot open file 'opencv_calib3d310d.lib' C:\project27july\myNewOpenCV\myNewOpenCV\LINK myNewOpenCV

yes it is exactly same opencv_world310.but if i not added above list it will give following error Error 1 error LNK2019: unresolved external symbol "void __cdecl cv::fastFree(void *)" (?fastFree@cv@@YAXPAX@Z) referenced in function "public: __thiscall cv::Mat::~Mat(void)" (??1Mat@cv@@QAE@XZ) C:\project27july\myNewOpenCV\myNewOpenCV\main.obj myNewOpenCV Error 2 error LNK2019: unresolved external symbol "private: char * __thiscall cv::String::allocate(unsigned int)" (?allocate@String@cv@@AAEPADI@Z) referenced in function "public: __thiscall cv::String::String(char const *)" (??0String@cv@@QAE@PBD@Z) C:\project27july\myNewOpenCV\myNewOpenCV\main.obj myNewOpenCV Error 3 error LNK2019: unresolved external symbol "private: void __thiscall cv::String::deallocate(void)" (?deallocate@String@cv@@AA

2016-07-27 04:17:35 -0600 asked a question error LNK1104: cannot open file 'opencv_calib3d310d.lib' C:\project27july\myNewOpenCV\myNewOpenCV\LINK myNewOpenCV

i have vs 2013 proffesional and using opencv3.1.0 i setup everything properly but while compiling this error occurs Error 1
error LNK1104: cannot open file 'opencv_calib3d310d.lib' C:\project27july\myNewOpenCV\myNewOpenCV\LINK myNewOpenCV

i have added following Additional dependencies is it fine or something missing where is the issue opencv_calib3d310d.lib opencv_core310d.lib opencv_features2d310d.lib opencv_flann310d.lib opencv_highgui310d.lib opencv_imgcodecs310d.lib opencv_imgproc310d.lib opencv_ml310d.lib opencv_objdetect310d.lib opencv_photo310d.lib opencv_shape310d.lib opencv_stitching310d.lib opencv_superres310d.lib opencv_ts310d.lib opencv_video310d.lib opencv_videoio310d.lib opencv_videostab310d.lib

2016-07-26 03:04:58 -0600 asked a question opencv3.1.0 librarylist

Hi,

can anybody provide opencv 3.10 lib list