Questions tagged [simd-library]

Simd Library is an image processing cross platform open source software library written in C++.

20 questions
1
vote
0 answers

Speed up face-detection by using pthread in C++11/Linux

I am the beginner of C++, and trying to do real-time face-detection by using OpenCV and SIMD Library(support ARM NEON) on raspberry pi 3 and camera. After using SIMD Library, the FPS is about 7. The FPS is OK but there is a little bit delay to the…
TheHothihi
  • 11
  • 1
1
vote
2 answers

HOG optimization with using SIMD

There are several attempts to optimize calculation of HOG descriptor with using of SIMD instructions: OpenCV, Dlib, and Simd. All of them use scalar code to add resulting magnitude to HOG histogram: float histogram[height/8][width/8][18]; float…
ErmIg
  • 3,980
  • 1
  • 27
  • 40
0
votes
1 answer

Simd error after updating to Catalina - Swift

Previously working code now gets an error: var row1 = simd_double3(x:CV1.x, y: CV1.y, z:CV1.z) var row2 = simd_double3(x:CV2.x, y: CV2.y, z:CV2.z) var row3 = simd_double3(x:self.n.x, y: self.n.y, z:self.n.z) var m:simd_double3x3 =…
0
votes
1 answer

Simd not on my Linux machine: fatal error: simd/simd.h: No such file or directory

I have a codebase that I can compile and run on my mac but not on my remote linux box and I am not sure why. When I compile I get the error fatal error: simd/simd.h: No such file or directory I am running the command g++ -std=c++11 -c…
J.Doe
  • 1,502
  • 13
  • 47
0
votes
0 answers

I found where the segmentation fault occurs, but I don't know what to do now

Basically, I'm taking a course called parallel programming. However, I have no experience programming in C and am not too knowledgeable in computer architecture. I know that cache is faster than memory... However, I have no idea how these concepts…
Eric Gumba
  • 435
  • 3
  • 16
1
2