1.I download source from https://github.com/aleph7/caffe/ and builded the caffe as static library for IOS and IPhone. 2.Created sample demo code and Linked Caffe static lib(.a) and execute the code. 3.Now I got Run time error
F0519 14:54:12.494139 14504 layer_factory.hpp:77] Check failed: registry.count(t ype) == 1 (0 vs. 1) Unknown layer type: Convolution (known types: MemoryData)
4.I searched a lot and found one solution from below link
5.If I create dynamic library instead of static library. It will work.
6.I tried to convert static library into Dynamic library.I got Error on Xcode that is cannot open the project I referred below link.
How do I change an existing XCode target from dynamic to static?
Can you help how to solve this..?