Ask Your Question

TripleS's profile - activity

2020-06-20 04:19:15 -0600 received badge  Famous Question (source)
2019-07-12 08:12:55 -0600 received badge  Notable Question (source)
2019-04-02 05:55:13 -0600 received badge  Popular Question (source)
2018-09-06 05:46:05 -0600 commented answer How to load a Keras model build with tensorflow backend in OpenCV

thank you !

2018-09-06 04:29:18 -0600 commented question How to load a Keras model build with tensorflow backend in OpenCV

I want to load the trained model using opencv C++. My goal is to migrate from python to solely cpp platform

2018-09-06 01:54:34 -0600 asked a question How to load a Keras model build with tensorflow backend in OpenCV

How to load a Keras model build with tensorflow backend in OpenCV Disclaimer, I posted the same question here and on St

2018-09-04 02:34:52 -0600 asked a question Is there a limitation for cv::dnn::ConvolutionLayer dimension?

Is there a limitation for cv::dnn::ConvolutionLayer dimension? I want to know is there a limitation for convolution laye

2017-12-05 00:17:13 -0600 received badge  Enthusiast
2017-11-15 04:21:22 -0600 received badge  Necromancer (source)
2017-11-15 02:24:20 -0600 edited answer How to redefine the Memory Allocator

Yes, you can redefine cv::Mat allocator !!! Simple inherent from MatAllocator Implement the virtual functions needed

2017-11-15 02:23:18 -0600 answered a question How to redefine the Memory Allocator

No, you can do it, Simple inherent from MatAllocator Implement the virtual functions needed Create a singleton in

2017-03-22 05:25:15 -0600 received badge  Necromancer (source)
2017-03-22 04:28:14 -0600 answered a question Problem with meanStdDev

The return type should be

double       mean_pxl = mean.val[0];
double       stddev_pxl = stddev.val[0];

otherwise you can use "auto"

auto mean_pxl = mean.val[0];
auto stddev_pxl = stddev.val[0];
2016-08-25 05:03:29 -0600 received badge  Supporter (source)
2016-06-30 01:08:55 -0600 received badge  Editor (source)
2016-06-30 01:02:37 -0600 asked a question Build Opencv 3.1.0 with IPP ippicv_windows_20151201.zip

Hey

I'm trying to build Opencv 3.1.0 on a stand alone computer (there is no internet access)

I have an Intel composer 2015 installed, which include IPP v8.

During CMake build configuration, I get the following message:

Cmake error at 3rdparty/downloader.cmake.73

for file: [..... /ippicv_windows_20151201.zip]

expected hash [...] actual hash [...]

I figure out that I need to manually download ippicv_windows_20151201.zip and place it in the sources sub - folder.

Do you know where I can download it from?

I can exclude the build flag: "WITH_IPP" , In that case, I'd not build with IPP at all, which is something I don't want.

I'd rather like to build OpenCV with my pre-installed IPP (Intel Composer), not the downloaded free version from OpenCV, Do you know how I can do that ?

BWT, What is the difference between build WITH_IPP and WITH_IPP_A flags ?

Best

S

2014-06-24 04:02:50 -0600 asked a question Is that possible to use a string as a name in opencv FileStorage

I'd like to write an xml file using opencv FileStorage object.

Most of the examples I get to see works like the following

    FileStorage fs("d:\\1.xml" , FileStorage::WRITE); 
    fs << "one" << 1;

I'd like to write a section with modified name variable , which means that the text would not have to be inserted in compile time. I look for something like this:

    string st = "1"; 
    fs << st.c_str() << 1;

However I keep on getting run time error. it's refused to work, I have tried using opencv string type, stl string type , char* , but still can't make it work.

Any help would be very appreciated