Unhandled exception at 0x77081d76 (ntdll.dll) in Stereo Vision.exe: 0xC0000005: Access violation writing location 0x00000014

1

I run (debug) my program about stereo vision and get this error. I also re-install Visual Studio 2010 Ultimate, but this issue still appeared.

Unhandled exception at 0x77081d76 (ntdll.dll) in Stereo Vision.exe: 0xC0000005: Access violation writing location 0x00000014.

I know something wrong with my dll or location of my project's result. But dunno how to solve it.

This is my code (too much .h and .cpp so I upload in dropbox): https://www.dropbox.com/sh/w7j0nrmcacr9frt/AAAVVrOmfCjQgS4dNh8hgF5Aa?dl=0

Could anyone help me?

Thanks.

p.s: I use VS 2010 Ultimate 32-bit and OpenCV 3.0

c++
visual-studio-2010
dll

2 Answers

2

Thank you for answering me. I solved it. I just need to change Configuration properties -> C/C++ -> Code Generation -> Run Time Library -> Multi-threaded Debug DLL (/MDd)

answered on Stack Overflow Jun 22, 2016 by Lina Khoirunisya
0

One solution I needed related to this issue was the ability to debug my C# code while this error prevented that from happening.

The solution was disabling native code debugging at the project level.

answered on Stack Overflow May 14, 2019 by billyciam

User contributions licensed under CC BY-SA 3.0