Robert Biehl

Results 25 comments of Robert Biehl

@abjurato A Swift wrapper is what I'm trying to build. Just a simple plug and play pod ;) It seems that I've become soft when it comes to integrating unwieldy...

Thanks @jquave. I hope I'll have simple to use solution soon. ``` 2017-04-22 23:30:29.201545+0200 Caffe2Test[4036:2762929] Inference results: 0: birdhouse - 31.4025% 1: carton - 20.0337% 2: crossword puzzle, crossword -...

I'll see if I can share my working Xcode project when I get up. It's still a mess, and my goal was to get at least simultaneous simulator+device build working....

@jquave I think you might want to use BGR, not RGB colors: https://caffe2.ai/docs/tutorial-image-pre-processing.html#null__caffe-uses-bgr-order You tutorial code suggests you only take out the alpha channel: `cv::cvtColor(src_img, bgra_img, CV_RGBA2RGB);` Also you need...

@abjurato and anyone else playing around with caffe2 on iOS: I'm in the process of creating a pod. If you want to try it out, it's here: [Caffe2Kit](https://github.com/RobertBiehl/caffe2-ios).

When I'm trying to build for simulator with `IOS_PLATFORM=SIMULATOR scripts/build_ios.sh` I get the following error: ```c [ 2%] Building C object CMakeFiles/CAFFE2_NNPACK.dir/third_party/NNPACK/src/neon/blas/conv1x1.c.o /usr/bin/gcc -DCAFFE2_UNIQUE_LONG_TYPEMETA -DCAFFE2_USE_EIGEN_FOR_BLAS -DEIGEN_MPL2_ONLY -I/Users/Robert/Documents/Workspace/caffe2-swift/lib/caffe2/build_ios_pod_x86_64 -isystem /Users/Robert/Documents/Workspace/caffe2-swift/lib/caffe2/third_party/protobuf/src -isystem...

@BrianOn99 Yes, sorry about that. It seems like it doesn't install correctly if the pod is referenced locally. I'll fix that.

@raininglixinyu The 6ms is only for inference after both the image and model have already been loaded. I actually changed the code, so that the BGRA color space is being...