2019-04-02 08:27:16 -0600 | commented answer | tf_text_graph_faster_rcnn.py config file I simply write my own model in tensorflow-keras... Simply python code... |
2019-04-02 04:10:03 -0600 | commented question | tf_text_graph_faster_rcnn.py config file Not clear. I am training a new model, with some layers, like convolution, pooling, dense layers, etc. I do it in tensorf |
2019-04-02 04:07:14 -0600 | commented answer | tf_text_graph_faster_rcnn.py config file This doesn't answer the question how to generate the config file. How the config file is generate when you train a tenso |
2019-04-01 10:28:53 -0600 | asked a question | tf_text_graph_faster_rcnn.py config file tf_text_graph_faster_rcnn.py config file In the article https://github.com/opencv/opencv/wiki/TensorFlow-Object-Detectio |
2019-04-01 10:09:25 -0600 | commented question | Error Loading .pb model from readNetFromTensorflow I have the same problem. Anyone answers in this forum at all? |
2019-04-01 10:08:26 -0600 | commented question | cv2.dnn.readNetFromTensorflow returns errors when loading .pb and .pbtxt files I have exactly the same problem |
2018-10-18 04:49:29 -0600 | received badge | ● Supporter (source) |
2018-10-18 04:20:46 -0600 | asked a question | Performance - Add and subtract, saving memory operations Performance - Add and subtract, saving memory operations I have 3 matrices: A,B,C. I want to add A to C (save in C), and |
2018-08-09 03:22:54 -0600 | answered a question | cv::Mat serialization to binary file I wrote this short code: /* Will save in the file: cols\n rows\n elemSize\n type\n DATA */ void serializeMatbin(Mat& |
2018-03-21 12:23:30 -0600 | received badge | ● Teacher (source) |
2017-11-28 08:44:23 -0600 | received badge | ● Necromancer (source) |
2017-10-31 04:00:57 -0600 | received badge | ● Enthusiast |
2017-10-24 14:04:03 -0600 | commented answer | Neon support for basic matrix operations Thanks. The strange thing is that when I set cv::setUseOptimized(false) at the beginning of my code, I don't see any per |
2017-10-22 09:21:01 -0600 | commented answer | Neon support for basic matrix operations Can you understand from the code if Neon is supported for when two matrices are added? |
2017-10-22 06:28:18 -0600 | asked a question | Neon support for basic matrix operations Neon support for basic matrix operations Is there a Neon support for add/subtract operations? If not, is there a plan to |
2017-08-13 06:04:54 -0600 | answered a question | cvWaitKey is not generating key codes for naviagation keys The solution is simple, yet undocumented properly. Just use waitKeyEx(1) |
2017-08-03 03:41:21 -0600 | commented question | No effect from using cuda::Stream? Same problem for me. Feels like Stream has no effect/not implemented. @edit - I found the problem. In order for Stream to have effect, you need to make sure all the destination GPUMat have memory allocated to them... |