ratneshkr / javacv

Automatically exported from code.google.com/p/javacv
GNU General Public License v2.0
0 stars 0 forks source link

BundleAdjusterBase.estimate() wrong signature #421

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The signature of the wrapper provided by javacv requires single objects instead 
of lists, in the opencv documentation the method needs a list of features, 
matches and cameras.

What version of the product are you using? On what operating system?
I am using javacv0.7 with opencv2.4.6 on windows7.

Original issue reported on code.google.com by chris.we...@gmail.com on 6 Feb 2014 at 12:50

GoogleCodeExporter commented 8 years ago
ImageFeatures, MatchesInfo, and CameraParams all derive from Pointer, which 
basically implements a native array, so we can use them as such:
http://javadoc.javacpp.googlecode.com/git/com/googlecode/javacpp/Pointer.html

Please post your questions on the mailing list, only, next time, thank you.

Original comment by samuel.a...@gmail.com on 6 Feb 2014 at 12:42

GoogleCodeExporter commented 8 years ago
Oops, `CameraParams` and `MatchesInfo` are missing an array allocator. Fixed 
that in this revision:
http://code.google.com/p/javacv/source/detail?r=2da6f6b0eb1e2801e5bf582d4f549228
18a34248

Original comment by samuel.a...@gmail.com on 7 Feb 2014 at 1:23

GoogleCodeExporter commented 8 years ago
Good, thank you I already thought that I am using them wrong. I am curious
whether I can produce some nice results today.
Am 07.02.2014 14:23 schrieb <javacv@googlecode.com>:

Original comment by chris.we...@gmail.com on 7 Feb 2014 at 2:07

GoogleCodeExporter commented 8 years ago
ImageFeatures imageFeaturesP = new ImageFeatures(length);
MatchesInfo matchesP = new MatchesInfo(length);
CameraParams camerasP = new CameraParams(length);

when calling these my jvm crashes

2014-02-07 15:06 GMT+01:00 Chris Wendler <chris.wendler.mobile@gmail.com>:

Original comment by chris.we...@gmail.com on 8 Feb 2014 at 12:18

GoogleCodeExporter commented 8 years ago
more precisely it crashes in the CameraParams(int len) constructor

2014-02-08 13:17 GMT+01:00 Chris Wendler <chris.wendler.mobile@gmail.com>:

Original comment by chris.we...@gmail.com on 8 Feb 2014 at 12:19

GoogleCodeExporter commented 8 years ago
Windows 7, 32 bit JRE

Original comment by chris.we...@gmail.com on 8 Feb 2014 at 1:43

GoogleCodeExporter commented 8 years ago
Well, we need to rebuild the project. If you're comfortable with Maven and 
everything, calling `mvn package` should do the trick.

Original comment by samuel.a...@gmail.com on 8 Feb 2014 at 2:37

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Do you have a stacktrace that goes with that?

I suspect that one of the dependencies of opencv_stitching is failing
silently...

Original comment by samuel.a...@gmail.com on 9 Feb 2014 at 6:13

GoogleCodeExporter commented 8 years ago
I already fixed that issue, I can run my testprogram now, the problem was
that I compiled it for x86 and I am working on an x64 architecture. However
my program that used to work crashes now, maybe I messed too much things up
when I had no clue what I was doing.

2014-02-09 7:13 GMT+01:00 <javacv@googlecode.com>:

Original comment by chris.we...@gmail.com on 9 Feb 2014 at 6:23

GoogleCodeExporter commented 8 years ago
okay the problem seems only to occur when i am trying to use matchesinfo...
very strange.
package debug;

import static org.opencv.core.Core.NATIVE_LIBRARY_NAME;

import com.googlecode.javacv.cpp.opencv_stitching.MatchesInfo;

public class PointerTest {
public static void main(String [] args){
System.loadLibrary(NATIVE_LIBRARY_NAME);
System.out.println(NATIVE_LIBRARY_NAME+" loaded");
MatchesInfo p1 = new MatchesInfo(), p2 = new MatchesInfo(), p3 = new
MatchesInfo();
MatchesInfo list = new MatchesInfo(300);

list.position(0).put(p1);
list.position(1).put(p2);
list.position(2).put(p3);
System.out.println(p1+" "+p2+" "+p3);
System.out.println(list);
while(true);
}
}
crashes with:
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000007743550e,
pid=2820, tid=6000
#
# JRE version: 7.0-b147
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0-b17 mixed mode
windows-amd64 compressed oops)
# Problematic frame:
# C  [ntdll.dll+0x5550e]
#
# Failed to write core dump. Minidumps are not enabled by default on client
versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x000000000224b800):  JavaThread "main" [_thread_in_native,
id=6000, stack(0x0000000002480000,0x0000000002580000)]

siginfo: ExceptionCode=0xc0000005, reading address 0x00000093d8321258

Registers:
RAX=0x0000000000000000, RBX=0x00000093d8321250, RCX=0x000000ffffffffff,
RDX=0x0000000000342ba0
RSP=0x000000000257e9b0, RBP=0x0000000007546d10, RSI=0x00000000002f0000,
RDI=0x0000000000342bb0
R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0064006f00630065,
R11=0x00000000775126e4
R12=0x000000000257eae0, R13=0x000000000032dc82, R14=0x0000000000000000,
R15=0x0000000000322cf0
RIP=0x000000007743550e, EFLAGS=0x0000000000010206

Top of Stack: (sp=0x000000000257e9b0)
0x000000000257e9b0:   0000000000000000 00000000002f94b0
0x000000000257e9c0:   000000000257f240 00000000002f96b4
0x000000000257e9d0:   0000000000322cf0 0000000000000000
0x000000000257e9e0:   000000000032dc82 0000000000000001
0x000000000257e9f0:   000000000257eae0 0000000000322cf0
0x000000000257ea00:   0000000000000000 000000000032dc82
0x000000000257ea10:   000000000257eae0 00000000c0000138
0x000000000257ea20:   0000000000000000 0000000007546d10
0x000000000257ea30:   000000000257eae0 0000000077435628
0x000000000257ea40:   0000000000000000 0000000000000052
0x000000000257ea50:   0000000000000000 0000000000000001
0x000000000257ea60:   000000007743af90 000000007742a2be
0x000000000257ea70:   000000007743af90 0000000007546d10
0x000000000257ea80:   0000000000000000 00000000c0000138
0x000000000257ea90:   0000000000000001 0000000005dc8c00
0x000000000257eaa0:   000000000224b800 000000000257eb60

Instructions: (pc=0x000000007743550e)
0x00000000774354ee:   ff ff 00 00 00 48 33 de 48 23 c1 48 c1 eb 04 48
0x00000000774354fe:   33 d8 48 33 1d c1 ce 0d 00 48 c1 e3 04 0f 0d 0b
0x000000007743550e:   4c 8b 63 08 49 bd 01 00 00 00 01 00 00 00 49 be
0x000000007743551e:   ff 7f 00 00 ff ff ff ff c6 42 0f 80 c6 42 0e 00

Register to memory mapping:

RAX=0x0000000000000000 is an unknown value
RBX=0x00000093d8321250 is an unknown value
RCX=0x000000ffffffffff is an unknown value
RDX=0x0000000000342ba0 is an unknown value
RSP=0x000000000257e9b0 is pointing into the stack for thread:
0x000000000224b800
RBP=0x0000000007546d10 is an unknown value
RSI=0x00000000002f0000 is an unknown value
RDI=0x0000000000342bb0 is an unknown value
R8 =0x0000000000000000 is an unknown value
R9 =0x0000000000000000 is an unknown value
R10=0x0064006f00630065 is an unknown value
R11=0x00000000775126e4 is an unknown value
R12=0x000000000257eae0 is pointing into the stack for thread:
0x000000000224b800
R13=0x000000000032dc82 is an unknown value
R14=0x0000000000000000 is an unknown value
R15=0x0000000000322cf0 is an unknown value

Stack: [0x0000000002480000,0x0000000002580000],  sp=0x000000000257e9b0,
 free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native
code)
C  [ntdll.dll+0x5550e]  RtlInitUnicodeStringEx+0x14e

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  java.lang.ClassLoader$NativeLibrary.find(Ljava/lang/String;)J+0
j
 java.lang.ClassLoader.findNative(Ljava/lang/ClassLoader;Ljava/lang/String;)J+49
v  ~StubRoutines::call_stub
j
 com.googlecode.javacv.cpp.opencv_stitching$MatchesInfo.allocateArray(I)V+0
j  com.googlecode.javacv.cpp.opencv_stitching$MatchesInfo.<init>(I)V+6
j  debug.PointerTest.main([Ljava/lang/String;)V+64
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x0000000005e74800 JavaThread "Service Thread" daemon [_thread_blocked,
id=4488, stack(0x0000000006aa0000,0x0000000006ba0000)]
  0x0000000005e70800 JavaThread "C2 CompilerThread1" daemon
[_thread_blocked, id=1836, stack(0x0000000006920000,0x0000000006a20000)]
  0x0000000005e62800 JavaThread "C2 CompilerThread0" daemon
[_thread_blocked, id=5808, stack(0x0000000006680000,0x0000000006780000)]
  0x0000000005e5d000 JavaThread "Attach Listener" daemon [_thread_blocked,
id=5348, stack(0x0000000006780000,0x0000000006880000)]
  0x0000000005e5b800 JavaThread "Signal Dispatcher" daemon
[_thread_blocked, id=2120, stack(0x0000000006360000,0x0000000006460000)]
  0x0000000005dd6000 JavaThread "Finalizer" daemon [_thread_blocked,
id=4528, stack(0x0000000006520000,0x0000000006620000)]
  0x0000000005dcc000 JavaThread "Reference Handler" daemon
[_thread_blocked, id=2876, stack(0x0000000006260000,0x0000000006360000)]
=>0x000000000224b800 JavaThread "main" [_thread_in_native, id=6000,
stack(0x0000000002480000,0x0000000002580000)]

Other Threads:
  0x0000000005dc7000 VMThread [stack:
0x00000000060f0000,0x00000000061f0000] [id=4408]
  0x0000000005e81000 WatcherThread [stack:
0x0000000006d80000,0x0000000006e80000] [id=4580]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 PSYoungGen      total 18816K, used 5698K [0x00000000eb000000,
0x00000000ec500000, 0x0000000100000000)
  eden space 16128K, 35% used
[0x00000000eb000000,0x00000000eb590908,0x00000000ebfc0000)
  from space 2688K, 0% used
[0x00000000ec260000,0x00000000ec260000,0x00000000ec500000)
  to   space 2688K, 0% used
[0x00000000ebfc0000,0x00000000ebfc0000,0x00000000ec260000)
 PSOldGen        total 43008K, used 0K [0x00000000c1000000,
0x00000000c3a00000, 0x00000000eb000000)
  object space 43008K, 0% used
[0x00000000c1000000,0x00000000c1000000,0x00000000c3a00000)
 PSPermGen       total 21248K, used 4179K [0x00000000bbe00000,
0x00000000bd2c0000, 0x00000000c1000000)
  object space 21248K, 19% used
[0x00000000bbe00000,0x00000000bc214d70,0x00000000bd2c0000)

Code Cache  [0x0000000002580000, 0x00000000027f0000, 0x0000000005580000)
 total_blobs=327 nmethods=30 adapters=249 free_code_cache=48655Kb
largest_free_block=49795392

Dynamic libraries:
0x000000013fea0000 - 0x000000013fed3000 C:\Program
Files\Java\jre7\bin\javaw.exe
0x00000000773e0000 - 0x0000000077589000 C:\Windows\SYSTEM32\ntdll.dll
0x00000000772c0000 - 0x00000000773df000 C:\Windows\system32\kernel32.dll
0x000007fefd290000 - 0x000007fefd2fc000 C:\Windows\system32\KERNELBASE.dll
0x000007feff610000 - 0x000007feff6eb000 C:\Windows\system32\ADVAPI32.dll
0x000007feff470000 - 0x000007feff50f000 C:\Windows\system32\msvcrt.dll
0x000007feff450000 - 0x000007feff46f000 C:\Windows\SYSTEM32\sechost.dll
0x000007fefda00000 - 0x000007fefdb2d000 C:\Windows\system32\RPCRT4.dll
0x00000000771c0000 - 0x00000000772ba000 C:\Windows\system32\USER32.dll
0x000007fefdf90000 - 0x000007fefdff7000 C:\Windows\system32\GDI32.dll
0x000007fefdda0000 - 0x000007fefddae000 C:\Windows\system32\LPK.dll
0x000007fefe230000 - 0x000007fefe2f9000 C:\Windows\system32\USP10.dll
0x000007fefbe10000 - 0x000007fefc004000
C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7
601.17514_none_fa396087175ac9ac\COMCTL32.dll
0x000007fefdc10000 - 0x000007fefdc81000 C:\Windows\system32\SHLWAPI.dll
0x000007fefe5e0000 - 0x000007fefe60e000 C:\Windows\system32\IMM32.DLL
0x000007fefdc90000 - 0x000007fefdd99000 C:\Windows\system32\MSCTF.dll
0x0000000060460000 - 0x0000000060531000 C:\Program
Files\Java\jre7\bin\msvcr100.dll
0x000000005bc50000 - 0x000000005c31e000 C:\Program
Files\Java\jre7\bin\server\jvm.dll
0x000007fef7fa0000 - 0x000007fef7fa9000 C:\Windows\system32\WSOCK32.dll
0x000007fefe590000 - 0x000007fefe5dd000 C:\Windows\system32\WS2_32.dll
0x000007feff440000 - 0x000007feff448000 C:\Windows\system32\NSI.dll
0x000007fefadf0000 - 0x000007fefae2b000 C:\Windows\system32\WINMM.dll
0x00000000775a0000 - 0x00000000775a7000 C:\Windows\system32\PSAPI.DLL
0x0000000071630000 - 0x000000007163f000 C:\Program
Files\Java\jre7\bin\verify.dll
0x0000000070050000 - 0x0000000070078000 C:\Program
Files\Java\jre7\bin\java.dll
0x00000000715f0000 - 0x0000000071605000 C:\Program
Files\Java\jre7\bin\zip.dll
0x000007fee76a0000 - 0x000007fee7f48000
C:\opencv\build\java\x64\opencv_java248.dll
0x000007fefa600000 - 0x000007fefa61f000 C:\Windows\system32\AVIFIL32.dll
0x000007fefe380000 - 0x000007fefe583000 C:\Windows\system32\ole32.dll
0x000007fefa8d0000 - 0x000007fefa8e8000 C:\Windows\system32\MSACM32.dll
0x000007fef3f10000 - 0x000007fef3f39000 C:\Windows\system32\MSVFW32.dll
0x000007fefe610000 - 0x000007feff398000 C:\Windows\system32\SHELL32.dll
0x000007fefa5c0000 - 0x000007fefa5d7000 C:\Windows\system32\AVICAP32.dll
0x000007fefc300000 - 0x000007fefc30c000 C:\Windows\system32\VERSION.dll
0x000007fefdb30000 - 0x000007fefdc07000 C:\Windows\system32\OLEAUT32.dll
0x0000000066840000 - 0x00000000676b4000
C:\opencv\build\x64\vc10\bin\opencv_ffmpeg248_64.dll
0x000007fef3d70000 - 0x000007fef3deb000
C:\opencv\build\x64\vc10\bin\opencv_gpu248.dll
0x000007feeb2a0000 - 0x000007feeb512000
C:\opencv\build\x64\vc10\bin\opencv_core248.dll
0x00000000722f0000 - 0x0000000072388000 C:\Windows\system32\MSVCP100.dll
0x000007fef2340000 - 0x000007fef23d9000
C:\opencv\build\x64\vc10\bin\opencv_flann248.dll
0x000007fee73e0000 - 0x000007fee7692000
C:\opencv\build\x64\vc10\bin\opencv_imgproc248.dll
0x000007feeef00000 - 0x000007feeefd7000
C:\opencv\build\x64\vc10\bin\opencv_features2d248.dll
0x000007feeed10000 - 0x000007feeedfb000
C:\opencv\build\x64\vc10\bin\opencv_calib3d248.dll
0x000007feef2f0000 - 0x000007feef35f000
C:\opencv\build\x64\vc10\bin\opencv_video248.dll
0x000007feebc10000 - 0x000007feebcda000
C:\opencv\build\x64\vc10\bin\opencv_objdetect248.dll
0x000007fee7190000 - 0x000007fee73dd000
C:\opencv\build\x64\vc10\bin\opencv_highgui248.dll
0x000007fee6e90000 - 0x000007fee7188000
C:\opencv\build\x64\vc10\bin\opencv_ocl248.dll
0x000007feef070000 - 0x000007feef104000
C:\opencv\build\x64\vc10\bin\opencv_ml248.dll
0x000007fef39d0000 - 0x000007fef3a0e000
C:\opencv\build\x64\vc10\bin\opencv_photo248.dll
0x000007fee6d20000 - 0x000007fee6e8e000
C:\opencv\build\x64\vc10\bin\opencv_legacy248.dll
0x000007feec190000 - 0x000007feec243000
C:\opencv\build\x64\vc10\bin\opencv_nonfree248.dll
0x000007fee6bf0000 - 0x000007fee6d18000
C:\opencv\build\x64\vc10\bin\opencv_stitching248.dll
0x000007fef22e0000 - 0x000007fef233a000
C:\Users\chris\AppData\Local\Temp\javacpp10886425408262\jniopencv_stitching.dll
0x000007feeb1f0000 - 0x000007feeb296000 C:\Windows\system32\MSVCP120.dll
0x000007fee6b00000 - 0x000007fee6bef000 C:\Windows\system32\MSVCR120.dll

VM Arguments:
jvm_args: -Djava.library.path=C:\opencv\build\java\x64
-Dfile.encoding=Cp1252
java_command: debug.PointerTest
Launcher Type: SUN_STANDARD

Environment Variables:
JAVA_HOME=C:\Program Files\Java\jdk1.7.0
CLASSPATH=.;C:\Program Files\Java\jdk1.7.0\lib
PATH=C:\Python27\;C:\Program Files (x86)\NVIDIA
Corporation\PhysX\Common;C:\Program Files\NVIDIA GPU Computing
Toolkit\CUDA\v5.0\bin\;C:\Program Files\NVIDIA GPU Computing
Toolkit\CUDA\v5.0\libnvvp\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wb
em;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\MinGW\bin\;C:\Program
Files (x86)\MiKTeX 2.9\miktex\bin\;C:\apache-ant-1.8.4\bin;C:\Program
Files\Java\jdk1.7.0\bin;C:\mspCOMPILER\bin;C:\Program
Files\doxygen\bin;C:\Program Files (x86)\Graphviz 2.28\bin;C:\Program Files
(x86)\Java\jre7\bin;C:\Users\chris\Downloads\Octave3.6.2_gcc4.6.2\bin;C:\Program
Files (x86)\QuickTime\QTSystem\;C:\Program Files
(x86)\GNU\GnuPG\pub;C:\Program Files
(x86)\Git\bin;C:\cygwin\bin;C:\MAVEN\bin;C:\Program Files\Microsoft SQL
Server\110\Tools\Binn\;C:\opencv\build\x64\vc10\bin;C:\Program Files
(x86)\7-Zip;C:\Users\chris\Downloads\ocv26\opencv\build\java
USERNAME=chris
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 15 Stepping 6, GenuineIntel

---------------  S Y S T E M  ---------------

OS: Windows 7 , 64 bit Build 7601 Service Pack 1

CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15
stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3

Memory: 4k page, physical 4126640k(1151584k free), swap 8251420k(4114020k
free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0-b17) for windows-amd64 JRE
(1.7.0-b147), built on Jun 27 2011 02:19:45 by "java_re" with unknown MS
VC++:1600

time: Sun Feb 09 07:50:06 2014
elapsed time: 0 seconds

2014-02-09 7:22 GMT+01:00 Chris Wendler <chris.wendler.mobile@gmail.com>:

Original comment by chris.we...@gmail.com on 9 Feb 2014 at 6:52

GoogleCodeExporter commented 8 years ago
You are using together librairies compiled by different versions of MSVC:
Not a good idea

Original comment by samuel.a...@gmail.com on 9 Feb 2014 at 8:52

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Could you please be so kind and tell me what exactly I have to do to
resolve that "library conflict", I tryed to use the vc12 native libraries
of opencv without success. Now I tryed to rebuild opencv with the same
compiler settings like I used for JavaCV, now I get different errors:

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fed8e32152, pid=7252, 
tid=5548
#
# JRE version: 7.0_25-b17
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode 
windows-amd64 compressed oops)
# Problematic frame:
# C  [opencv_stitching248.dll+0x2152]  cv::Mat::operator=+0x92
#
# Failed to write core dump. Minidumps are not enabled by default on client 
versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x000000000231d800):  JavaThread "main" [_thread_in_native, 
id=5548, stack(0x0000000002730000,0x0000000002830000)]

siginfo: ExceptionCode=0xc0000005, writing address 0x0000000000000000

Registers:
RAX=0x0000000000000100, RBX=0x000000001b8789a0, RCX=0x0000000000000000, 
RDX=0x0000000000000002
RSP=0x000000000282f130, RBP=0x000000000282f260, RSI=0x000000001b878970, 
RDI=0x000000000282f200
R8 =0x000000000282f208, R9 =0x000000000000067e, R10=0x0000000000000000, 
R11=0x0000000000000286
R12=0x0000000000000000, R13=0x00000000bd2a8230, R14=0x000000001b878970, 
R15=0x000000000282f610
RIP=0x000007fed8e32152, EFLAGS=0x0000000000010246

Top of Stack: (sp=0x000000000282f130)
0x000000000282f130:   0000000000000000 0000000019a93720
0x000000000282f140:   000000001b878970 000000000282f4c0
0x000000000282f150:   0000000019a93720 000007fed8e4c530
0x000000000282f160:   000000000282f4c0 000000006ee08472
0x000000000282f170:   000000000282f320 000000006edce3ea
0x000000000282f180:   000000000282f260 ffffffffffffff00
0x000000000282f190:   fffffffffffffffe 000000006f0656b8
0x000000000282f1a0:   0000000242ff4005 000000400000067e
0x000000000282f1b0:   000000001d6cb020 000000001d732e20
0x000000000282f1c0:   000000001d6cb020 000000001d732e20
0x000000000282f1d0:   000000001d732e20 0000000000000000
0x000000000282f1e0:   000000000282f1a8 000000000282f1f0
0x000000000282f1f0:   0000000000000100 0000000000000004
0x000000000282f200:   0000000242ff4005 000000400000067e
0x000000000282f210:   000000001d6cb020 000000001d732e20
0x000000000282f220:   000000001d6cb020 000000001d732e20 

Instructions: (pc=0x000007fed8e32152)
0x000007fed8e32132:   04 83 f8 02 7f 2f 48 8b 4b 48 89 43 04 8b 47 08
0x000007fed8e32142:   89 43 08 8b 47 0c 89 43 0c 48 8b 47 48 48 8b 00
0x000007fed8e32152:   48 89 01 48 8b 47 48 48 8b 4b 48 48 8b 40 08 48
0x000007fed8e32162:   89 41 08 eb 0b 48 8b d7 48 8b cb e8 28 d6 09 00 

Register to memory mapping:

RAX=0x0000000000000100 is an unknown value
RBX=0x000000001b8789a0 is an unknown value
RCX=0x0000000000000000 is an unknown value
RDX=0x0000000000000002 is an unknown value
RSP=0x000000000282f130 is pointing into the stack for thread: 0x000000000231d800
RBP=0x000000000282f260 is pointing into the stack for thread: 0x000000000231d800
RSI=0x000000001b878970 is an unknown value
RDI=0x000000000282f200 is pointing into the stack for thread: 0x000000000231d800
R8 =0x000000000282f208 is pointing into the stack for thread: 0x000000000231d800
R9 =0x000000000000067e is an unknown value
R10=0x0000000000000000 is an unknown value
R11=0x0000000000000286 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0x00000000bd2a8230 is an oop
{method} 
 - klass: {other class}
R14=0x000000001b878970 is an unknown value
R15=0x000000000282f610 is pointing into the stack for thread: 0x000000000231d800

Stack: [0x0000000002730000,0x0000000002830000],  sp=0x000000000282f130,  free 
space=1020k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [opencv_stitching248.dll+0x2152]  cv::Mat::operator=+0x92

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  
com.googlecode.javacv.cpp.opencv_stitching$FeaturesFinder.find(Lcom/googlecode/j
avacv/cpp/opencv_core$IplImage;Lcom/googlecode/javacv/cpp/opencv_stitching$Image
Features;)V+0
j  vg.VisualGeometry.bundleAdjustment()V+223
j  vg.VisualGeometry.main([Ljava/lang/String;)V+90
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x000000000b5f2800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5488, stack(0x0000000018fe0000,0x00000000190e0000)]
  0x000000000a1bd000 JavaThread "Service Thread" daemon [_thread_blocked, id=6248, stack(0x000000000ac40000,0x000000000ad40000)]
  0x000000000a1b0000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=6872, stack(0x000000000ab30000,0x000000000ac30000)]
  0x000000000a1ab000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=5176, stack(0x000000000a9d0000,0x000000000aad0000)]
  0x000000000a1a2800 JavaThread "Attach Listener" daemon [_thread_blocked, id=2712, stack(0x000000000a830000,0x000000000a930000)]
  0x000000000a196800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2064, stack(0x000000000a680000,0x000000000a780000)]
  0x0000000008f79000 JavaThread "Finalizer" daemon [_thread_blocked, id=3588, stack(0x0000000009f10000,0x000000000a010000)]
  0x0000000008f6d800 JavaThread "Reference Handler" daemon [_thread_blocked, id=4932, stack(0x000000000a040000,0x000000000a140000)]
=>0x000000000231d800 JavaThread "main" [_thread_in_native, id=5548, 
stack(0x0000000002730000,0x0000000002830000)]

Other Threads:
  0x0000000008f5f800 VMThread [stack: 0x0000000009e00000,0x0000000009f00000] [id=5136]
  0x000000000a1c8000 WatcherThread [stack: 0x000000000add0000,0x000000000aed0000] [id=5940]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 PSYoungGen      total 277568K, used 275894K [0x00000000eb600000, 0x00000000fff40000, 0x0000000100000000)
  eden space 277312K, 99% used [0x00000000eb600000,0x00000000fc32db30,0x00000000fc4d0000)
  from space 256K, 100% used [0x00000000ffe80000,0x00000000ffec0000,0x00000000ffec0000)
  to   space 512K, 0% used [0x00000000ffec0000,0x00000000ffec0000,0x00000000fff40000)
 ParOldGen       total 42240K, used 7338K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c292aad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 8087K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 38% used [0x00000000bd000000,0x00000000bd7e5d58,0x00000000be4c0000)

Card table byte_map: [0x0000000005830000,0x0000000005a50000] byte_map_base: 
0x0000000005248000

Polling page: 0x0000000000360000

Code Cache  [0x0000000002830000, 0x0000000002aa0000, 0x0000000005830000)
 total_blobs=632 nmethods=155 adapters=428 free_code_cache=48226Kb largest_free_block=49357504

Compilation events (10 events):
Event: 34.435 Thread 0x000000000a1b0000  146             
sun.nio.cs.SingleByte$Encoder::encode (114 bytes)
Event: 34.443 Thread 0x000000000a1b0000 nmethod 146 0x0000000002901710 code 
[0x0000000002901880, 0x0000000002901c18]
Event: 34.713 Thread 0x000000000a1ab000  147             
sun.awt.image.ByteInterleavedRaster::putByteData (834 bytes)
Event: 34.784 Thread 0x000000000a1ab000 nmethod 147 0x0000000002905f10 code 
[0x00000000029060a0, 0x0000000002907888]
Event: 34.812 Thread 0x000000000a1b0000    6 %           
com.googlecode.javacv.cpp.opencv_core$IplImage::flipCopyWithGamma @ 484 (608 
bytes)
Event: 34.813 Thread 0x000000000a1ab000  148             
java.nio.HeapByteBuffer::get (14 bytes)
Event: 34.814 Thread 0x000000000a1ab000 nmethod 148 0x0000000002905810 code 
[0x0000000002905940, 0x00000000029059f8]
Event: 34.814 Thread 0x000000000a1ab000  149             
java.nio.DirectByteBuffer::put (17 bytes)
Event: 34.815 Thread 0x000000000a1ab000 nmethod 149 0x00000000028fcfd0 code 
[0x00000000028fd100, 0x00000000028fd198]
Event: 34.839 Thread 0x000000000a1b0000 nmethod 6% 0x000000000291b290 code 
[0x000000000291b540, 0x000000000291cca0]

GC Heap History (10 events):
Event: 30.676 GC heap before
{Heap before GC invocations=45 (full 0):
 PSYoungGen      total 337408K, used 337216K [0x00000000eb600000, 0x0000000100000000, 0x0000000100000000)
  eden space 336896K, 100% used [0x00000000eb600000,0x00000000fff00000,0x00000000fff00000)
  from space 512K, 62% used [0x00000000fff80000,0x00000000fffd0000,0x0000000100000000)
  to   space 512K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000000fff80000)
 ParOldGen       total 42240K, used 7234K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2910ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
Event: 30.678 GC heap after
Heap after GC invocations=45 (full 0):
 PSYoungGen      total 337408K, used 352K [0x00000000eb600000, 0x0000000100000000, 0x0000000100000000)
  eden space 336896K, 0% used [0x00000000eb600000,0x00000000eb600000,0x00000000fff00000)
  from space 512K, 68% used [0x00000000fff00000,0x00000000fff58000,0x00000000fff80000)
  to   space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
 ParOldGen       total 42240K, used 7250K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2914ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
}
Event: 30.858 GC heap before
{Heap before GC invocations=46 (full 0):
 PSYoungGen      total 337408K, used 337248K [0x00000000eb600000, 0x0000000100000000, 0x0000000100000000)
  eden space 336896K, 100% used [0x00000000eb600000,0x00000000fff00000,0x00000000fff00000)
  from space 512K, 68% used [0x00000000fff00000,0x00000000fff58000,0x00000000fff80000)
  to   space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
 ParOldGen       total 42240K, used 7250K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2914ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
Event: 30.860 GC heap after
Heap after GC invocations=46 (full 0):
 PSYoungGen      total 321152K, used 288K [0x00000000eb600000, 0x00000000fffd0000, 0x0000000100000000)
  eden space 320832K, 0% used [0x00000000eb600000,0x00000000eb600000,0x00000000fef50000)
  from space 320K, 90% used [0x00000000fff80000,0x00000000fffc8000,0x00000000fffd0000)
  to   space 512K, 0% used [0x00000000ffed0000,0x00000000ffed0000,0x00000000fff50000)
 ParOldGen       total 42240K, used 7282K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c291cad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
}
Event: 31.022 GC heap before
{Heap before GC invocations=47 (full 0):
 PSYoungGen      total 321152K, used 321120K [0x00000000eb600000, 0x00000000fffd0000, 0x0000000100000000)
  eden space 320832K, 100% used [0x00000000eb600000,0x00000000fef50000,0x00000000fef50000)
  from space 320K, 90% used [0x00000000fff80000,0x00000000fffc8000,0x00000000fffd0000)
  to   space 512K, 0% used [0x00000000ffed0000,0x00000000ffed0000,0x00000000fff50000)
 ParOldGen       total 42240K, used 7282K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c291cad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
Event: 31.023 GC heap after
Heap after GC invocations=47 (full 0):
 PSYoungGen      total 305984K, used 352K [0x00000000eb600000, 0x00000000fff90000, 0x0000000100000000)
  eden space 305600K, 0% used [0x00000000eb600000,0x00000000eb600000,0x00000000fe070000)
  from space 384K, 91% used [0x00000000ffed0000,0x00000000fff28000,0x00000000fff30000)
  to   space 384K, 0% used [0x00000000fff30000,0x00000000fff30000,0x00000000fff90000)
 ParOldGen       total 42240K, used 7298K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2920ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
}
Event: 31.188 GC heap before
{Heap before GC invocations=48 (full 0):
 PSYoungGen      total 305984K, used 305952K [0x00000000eb600000, 0x00000000fff90000, 0x0000000100000000)
  eden space 305600K, 100% used [0x00000000eb600000,0x00000000fe070000,0x00000000fe070000)
  from space 384K, 91% used [0x00000000ffed0000,0x00000000fff28000,0x00000000fff30000)
  to   space 384K, 0% used [0x00000000fff30000,0x00000000fff30000,0x00000000fff90000)
 ParOldGen       total 42240K, used 7298K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2920ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
Event: 31.189 GC heap after
Heap after GC invocations=48 (full 0):
 PSYoungGen      total 291392K, used 320K [0x00000000eb600000, 0x00000000fff80000, 0x0000000100000000)
  eden space 291072K, 0% used [0x00000000eb600000,0x00000000eb600000,0x00000000fd240000)
  from space 320K, 100% used [0x00000000fff30000,0x00000000fff80000,0x00000000fff80000)
  to   space 512K, 0% used [0x00000000ffe80000,0x00000000ffe80000,0x00000000fff00000)
 ParOldGen       total 42240K, used 7322K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2926ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
}
Event: 31.356 GC heap before
{Heap before GC invocations=49 (full 0):
 PSYoungGen      total 291392K, used 291392K [0x00000000eb600000, 0x00000000fff80000, 0x0000000100000000)
  eden space 291072K, 100% used [0x00000000eb600000,0x00000000fd240000,0x00000000fd240000)
  from space 320K, 100% used [0x00000000fff30000,0x00000000fff80000,0x00000000fff80000)
  to   space 512K, 0% used [0x00000000ffe80000,0x00000000ffe80000,0x00000000fff00000)
 ParOldGen       total 42240K, used 7322K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c2926ad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
Event: 31.357 GC heap after
Heap after GC invocations=49 (full 0):
 PSYoungGen      total 277568K, used 256K [0x00000000eb600000, 0x00000000fff40000, 0x0000000100000000)
  eden space 277312K, 0% used [0x00000000eb600000,0x00000000eb600000,0x00000000fc4d0000)
  from space 256K, 100% used [0x00000000ffe80000,0x00000000ffec0000,0x00000000ffec0000)
  to   space 512K, 0% used [0x00000000ffec0000,0x00000000ffec0000,0x00000000fff40000)
 ParOldGen       total 42240K, used 7338K [0x00000000c2200000, 0x00000000c4b40000, 0x00000000eb600000)
  object space 42240K, 17% used [0x00000000c2200000,0x00000000c292aad0,0x00000000c4b40000)
 PSPermGen       total 21248K, used 5485K [0x00000000bd000000, 0x00000000be4c0000, 0x00000000c2200000)
  object space 21248K, 25% used [0x00000000bd000000,0x00000000bd55b400,0x00000000be4c0000)
}

Deoptimization events (10 events):
Event: 27.524 Thread 0x000000000231d800 Uncommon trap -42 fr.pc 
0x00000000028d130c
Event: 27.524 Thread 0x000000000231d800 Uncommon trap -42 fr.pc 
0x00000000028d130c
Event: 31.587 Thread 0x000000000231d800 Uncommon trap -83 fr.pc 
0x00000000028d2f68
Event: 33.964 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028d8600
Event: 33.964 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028d6774
Event: 34.810 Thread 0x000000000231d800 Uncommon trap -122 fr.pc 
0x00000000028c7208
Event: 34.810 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028c4d88
Event: 34.811 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028c4d88
Event: 34.811 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028c4d88
Event: 34.811 Thread 0x000000000231d800 Uncommon trap -34 fr.pc 
0x00000000028c4d88

Internal exceptions (10 events):
Event: 33.308 Thread 0x000000000231d800 Threw 0x00000000fb63a878 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.309 Thread 0x000000000231d800 Threw 0x00000000fb63ee70 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.310 Thread 0x000000000231d800 Threw 0x00000000fb6432e0 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.310 Thread 0x000000000231d800 Threw 0x00000000fb647ed8 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.311 Thread 0x000000000231d800 Threw 0x00000000fb64c780 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.311 Thread 0x000000000231d800 Threw 0x00000000fb650c08 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.416 Thread 0x000000000231d800 Threw 0x00000000fb8632d0 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.468 Thread 0x000000000231d800 Threw 0x00000000fb978fa8 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 33.470 Thread 0x000000000231d800 Threw 0x00000000fb97d498 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235
Event: 34.809 Thread 0x000000000231d800 Threw 0x00000000fc0307d0 at 
C:\jdk7u2_64p\jdk7u25\hotspot\src\share\vm\prims\jvm.cpp:1235

Events (10 events):
Event: 34.810 Thread 0x000000000231d800 DEOPT PACKING pc=0x00000000028c7208 
sp=0x000000000282f250
Event: 34.810 Thread 0x000000000231d800 DEOPT UNPACKING pc=0x0000000002869164 
sp=0x000000000282f250 mode 2
Event: 34.810 Thread 0x000000000231d800 DEOPT PACKING pc=0x00000000028c4d88 
sp=0x000000000282f250
Event: 34.810 Thread 0x000000000231d800 DEOPT UNPACKING pc=0x0000000002869164 
sp=0x000000000282f248 mode 2
Event: 34.811 Thread 0x000000000231d800 DEOPT PACKING pc=0x00000000028c4d88 
sp=0x000000000282f250
Event: 34.811 Thread 0x000000000231d800 DEOPT UNPACKING pc=0x0000000002869164 
sp=0x000000000282f248 mode 2
Event: 34.811 Thread 0x000000000231d800 DEOPT PACKING pc=0x00000000028c4d88 
sp=0x000000000282f250
Event: 34.811 Thread 0x000000000231d800 DEOPT UNPACKING pc=0x0000000002869164 
sp=0x000000000282f248 mode 2
Event: 34.811 Thread 0x000000000231d800 DEOPT PACKING pc=0x00000000028c4d88 
sp=0x000000000282f250
Event: 34.811 Thread 0x000000000231d800 DEOPT UNPACKING pc=0x0000000002869164 
sp=0x000000000282f248 mode 2

Dynamic libraries:
0x000000013f860000 - 0x000000013f893000     C:\Program 
Files\Java\jre7\bin\javaw.exe
0x0000000077c70000 - 0x0000000077e19000     C:\Windows\SYSTEM32\ntdll.dll
0x0000000077a50000 - 0x0000000077b6f000     C:\Windows\system32\kernel32.dll
0x000007fefdd90000 - 0x000007fefddfb000     C:\Windows\system32\KERNELBASE.dll
0x000007feff2c0000 - 0x000007feff39b000     C:\Windows\system32\ADVAPI32.dll
0x000007feff3c0000 - 0x000007feff45f000     C:\Windows\system32\msvcrt.dll
0x000007feff3a0000 - 0x000007feff3bf000     C:\Windows\SYSTEM32\sechost.dll
0x000007fefefb0000 - 0x000007feff0dd000     C:\Windows\system32\RPCRT4.dll
0x0000000077b70000 - 0x0000000077c6a000     C:\Windows\system32\USER32.dll
0x000007fefe000000 - 0x000007fefe067000     C:\Windows\system32\GDI32.dll
0x000007fefe0f0000 - 0x000007fefe0fe000     C:\Windows\system32\LPK.dll
0x000007feffc00000 - 0x000007feffcc9000     C:\Windows\system32\USP10.dll
0x000007fefc450000 - 0x000007fefc644000 
    C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.
7601.17514_none_fa396087175ac9ac\COMCTL32.dll
0x000007fefe100000 - 0x000007fefe171000     C:\Windows\system32\SHLWAPI.dll
0x000007fefd8f0000 - 0x000007fefd947000     C:\Windows\system32\apphelp.dll
0x000007fedb1b0000 - 0x000007fedb617000 
    C:\Windows\AppPatch\AppPatch64\AcXtrnal.DLL
0x000007feff840000 - 0x000007feff86e000     C:\Windows\system32\IMM32.DLL
0x000007fefde50000 - 0x000007fefdf59000     C:\Windows\system32\MSCTF.dll
0x0000000066ee0000 - 0x0000000066fb1000     C:\Program 
Files\Java\jre7\bin\msvcr100.dll
0x000000006eb70000 - 0x000000006f27f000     C:\Program 
Files\Java\jre7\bin\server\jvm.dll
0x000007fef9bc0000 - 0x000007fef9bc9000     C:\Windows\system32\WSOCK32.dll
0x000007feff7f0000 - 0x000007feff83d000     C:\Windows\system32\WS2_32.dll
0x000007feff700000 - 0x000007feff708000     C:\Windows\system32\NSI.dll
0x000007fefa7e0000 - 0x000007fefa81b000     C:\Windows\system32\WINMM.dll
0x0000000077e30000 - 0x0000000077e37000     C:\Windows\system32\PSAPI.DLL
0x000000006c800000 - 0x000000006c80f000     C:\Program 
Files\Java\jre7\bin\verify.dll
0x000000006c7d0000 - 0x000000006c7f8000     C:\Program Files\Java\jre7\bin\java.dll
0x000000006af20000 - 0x000000006af35000     C:\Program Files\Java\jre7\bin\zip.dll
0x000007fede3e0000 - 0x000007fede4a5000 
    C:\opencv\mybuild\bin\Release\opencv_java248.dll
0x000007fedaf30000 - 0x000007fedb1a2000 
    C:\opencv\mybuild\bin\Release\opencv_core248.dll
0x000007fede4d0000 - 0x000007fede576000     C:\Windows\system32\MSVCP120.dll
0x000007fede2f0000 - 0x000007fede3df000     C:\Windows\system32\MSVCR120.dll
0x000007fedac80000 - 0x000007fedaf30000 
    C:\opencv\mybuild\bin\Release\opencv_imgproc248.dll
0x000007fedaa20000 - 0x000007fedac78000 
    C:\opencv\mybuild\bin\Release\opencv_highgui248.dll
0x000007feff9d0000 - 0x000007feffbd3000     C:\Windows\system32\ole32.dll
0x000007feff710000 - 0x000007feff7e7000     C:\Windows\system32\OLEAUT32.dll
0x000007fef9090000 - 0x000007fef90b9000     C:\Windows\system32\MSVFW32.dll
0x000007fefe220000 - 0x000007fefefa8000     C:\Windows\system32\SHELL32.dll
0x000007fef9070000 - 0x000007fef908f000     C:\Windows\system32\AVIFIL32.dll
0x000007fefa550000 - 0x000007fefa568000     C:\Windows\system32\MSACM32.dll
0x000007fef9050000 - 0x000007fef9067000     C:\Windows\system32\AVICAP32.dll
0x000007fefcae0000 - 0x000007fefcaec000     C:\Windows\system32\VERSION.dll
0x000007feda940000 - 0x000007fedaa16000 
    C:\opencv\mybuild\bin\Release\opencv_features2d248.dll
0x000007feda890000 - 0x000007feda934000 
    C:\opencv\mybuild\bin\Release\opencv_flann248.dll
0x000007feda7a0000 - 0x000007feda886000 
    C:\opencv\mybuild\bin\Release\opencv_calib3d248.dll
0x000007fede250000 - 0x000007fede2e4000 
    C:\opencv\mybuild\bin\Release\opencv_ml248.dll
0x000007fee3530000 - 0x000007fee359d000 
    C:\opencv\mybuild\bin\Release\opencv_video248.dll
0x000007feda6d0000 - 0x000007feda798000 
    C:\opencv\mybuild\bin\Release\opencv_objdetect248.dll
0x000007fef7ac0000 - 0x000007fef7afd000 
    C:\opencv\mybuild\bin\Release\opencv_photo248.dll
0x000007feda620000 - 0x000007feda6d0000 
    C:\opencv\mybuild\bin\Release\opencv_nonfree248.dll
0x000007feda5a0000 - 0x000007feda61a000 
    C:\opencv\mybuild\bin\Release\opencv_gpu248.dll
0x000007feda2d0000 - 0x000007feda597000 
    C:\opencv\mybuild\bin\Release\opencv_ocl248.dll
0x000007feda180000 - 0x000007feda2ca000 
    C:\opencv\mybuild\bin\Release\opencv_contrib248.dll
0x000000000bad0000 - 0x000000000c944000 
    C:\opencv\build\x64\vc10\bin\opencv_ffmpeg248_64.dll
0x000007fed9f00000 - 0x000007feda172000 
    C:\opencv\build\x64\vc10\bin\opencv_core248.dll
0x0000000073460000 - 0x00000000734f8000     C:\Windows\system32\MSVCP100.dll
0x000007fed9c40000 - 0x000007fed9ef2000 
    C:\opencv\build\x64\vc10\bin\opencv_imgproc248.dll
0x000007fed99f0000 - 0x000007fed9c3d000 
    C:\opencv\build\x64\vc10\bin\opencv_highgui248.dll
0x000007fef7a60000 - 0x000007fef7a72000 
    C:\Users\Chris\AppData\Local\Temp\javacpp81734439467948\jniopencv_highgui.dll
0x000007fed9960000 - 0x000007fed99ea000 
    C:\Users\Chris\AppData\Local\Temp\javacpp81734439467948\jniopencv_core.dll
0x000000006c620000 - 0x000000006c7b5000     C:\Program Files\Java\jre7\bin\awt.dll
0x000007fed98e0000 - 0x000007fed995b000 
    C:\opencv\build\x64\vc10\bin\opencv_gpu248.dll
0x000007fed95e0000 - 0x000007fed98d8000 
    C:\opencv\build\x64\vc10\bin\opencv_ocl248.dll
0x000007fed9540000 - 0x000007fed95d9000 
    C:\opencv\build\x64\vc10\bin\opencv_flann248.dll
0x000007fed9460000 - 0x000007fed9537000 
    C:\opencv\build\x64\vc10\bin\opencv_features2d248.dll
0x000007fed9370000 - 0x000007fed945b000 
    C:\opencv\build\x64\vc10\bin\opencv_calib3d248.dll
0x000007fed92a0000 - 0x000007fed936a000 
    C:\opencv\build\x64\vc10\bin\opencv_objdetect248.dll
0x000007fee0210000 - 0x000007fee024e000 
    C:\opencv\build\x64\vc10\bin\opencv_photo248.dll
0x000007fed9200000 - 0x000007fed9294000 
    C:\opencv\build\x64\vc10\bin\opencv_ml248.dll
0x000007fed9190000 - 0x000007fed91ff000 
    C:\opencv\build\x64\vc10\bin\opencv_video248.dll
0x000007fed9020000 - 0x000007fed918e000 
    C:\opencv\build\x64\vc10\bin\opencv_legacy248.dll
0x000007fed8f60000 - 0x000007fed9013000 
    C:\opencv\build\x64\vc10\bin\opencv_nonfree248.dll
0x000007fed8e30000 - 0x000007fed8f58000 
    C:\opencv\build\x64\vc10\bin\opencv_stitching248.dll
0x000007fee0370000 - 0x000007fee03ca000 
    C:\Users\Chris\AppData\Local\Temp\javacpp81734439467948\jniopencv_stitching.dll
0x000007fefd2b0000 - 0x000007fefd2c7000     C:\Windows\system32\CRYPTSP.dll
0x000007fefcfb0000 - 0x000007fefcff7000     C:\Windows\system32\rsaenh.dll
0x000007fefcd20000 - 0x000007fefcd3e000     C:\Windows\system32\USERENV.dll
0x000007fefda20000 - 0x000007fefda2f000     C:\Windows\system32\profapi.dll
0x000007fefd950000 - 0x000007fefd95f000     C:\Windows\system32\CRYPTBASE.dll
0x0000000069e90000 - 0x0000000069ea9000     C:\Program Files\Java\jre7\bin\net.dll
0x000007fefd250000 - 0x000007fefd2a5000     C:\Windows\system32\mswsock.dll
0x000007fefd240000 - 0x000007fefd247000     C:\Windows\System32\wship6.dll
0x000007fefbd20000 - 0x000007fefbd35000     C:\Windows\system32\NLAapi.dll
0x000007fef91d0000 - 0x000007fef91e5000     C:\Windows\system32\napinsp.dll
0x000007fef91f0000 - 0x000007fef9209000     C:\Windows\system32\pnrpnsp.dll
0x000007fefd0d0000 - 0x000007fefd12b000     C:\Windows\system32\DNSAPI.dll
0x000007fef91c0000 - 0x000007fef91cb000     C:\Windows\System32\winrnr.dll
0x000007fef9680000 - 0x000007fef96af000     C:\Program Files\Common 
Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
0x000007fef91b0000 - 0x000007fef91c0000     C:\Windows\system32\wshbth.dll
0x000007fefcc00000 - 0x000007fefcc07000     C:\Windows\System32\wshtcpip.dll
0x000007fefb3e0000 - 0x000007fefb407000     C:\Windows\system32\IPHLPAPI.DLL
0x000007fefb3d0000 - 0x000007fefb3db000     C:\Windows\system32\WINNSI.DLL
0x000007fef9670000 - 0x000007fef9678000     C:\Windows\system32\rasadhlp.dll
0x000007fefb260000 - 0x000007fefb2b3000     C:\Windows\System32\fwpuclnt.dll
0x0000000069e70000 - 0x0000000069e81000     C:\Program Files\Java\jre7\bin\nio.dll
0x0000000069e40000 - 0x0000000069e70000     C:\Program Files\Java\jre7\bin\jpeg.dll
0x000007fef7730000 - 0x000007fef7855000     C:\Windows\system32\dbghelp.dll

VM Arguments:
jvm_args: -Djava.library.path=C:\opencv\mybuild\bin\Release 
-Dfile.encoding=Cp1252 
java_command: vg.VisualGeometry
Launcher Type: SUN_STANDARD

Environment Variables:
JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_11
PATH=C:/Program Files (x86)/Java/jre7/bin/client;C:/Program Files 
(x86)/Java/jre7/bin;C:/Program Files (x86)/Java/jre7/lib/i386;C:\Program Files 
(x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD 
APP\bin\x86;C:\Users\Chris\Documents\AMD 
APP\bin\x86_64;C:\Users\Chris\Documents\AMD APP\bin\x86;C:\Program Files\Common 
Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common 
Files\Microsoft Shared\Windows 
Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32
\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program 
Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files 
(x86)\Toshiba\Bluetooth Toshiba Stack\sys\;C:\Program Files 
(x86)\Toshiba\Bluetooth Toshiba Stack\sys\x64\;C:\Program Files (x86)\CMake 
2.8\bin;C:\MinGW\bin\;C:\apache-ant-1.8.4\bin;C:\mspgcc4-20110312\bin;C:\Program
 Files (x86)\Java\jdk1.7.0_11\bin;C:\Program Files 
(x86)\Tesseract-OCR;C:\Program Files (x86)\MiKTeX 
2.9\miktex\bin\;C:\Python27;C:\Program Files\MATLAB\MATLAB Compiler 
Runtime\v80\runtime\win64;C:\OpenCVStuff\ffmpeg\bin;C:\opencv\mybuild\bin\Releas
e;C:\JARS\apache-maven-3.1.1\bin;C:\Program Files\Microsoft SQL 
Server\110\Tools\Binn\;;C:\Program Files\eclipse;
USERNAME=Chris
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel

---------------  S Y S T E M  ---------------

OS: Windows 7 , 64 bit Build 7601 Service Pack 1

CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 5, 
cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht, tsc, 
tscinvbit

Memory: 4k page, physical 4049584k(922252k free), swap 8097304k(3466732k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (23.25-b01) for windows-amd64 JRE 
(1.7.0_25-b17), built on Jun 21 2013 12:58:32 by "java_re" with unknown MS 
VC++:1600

time: Mon Feb 10 14:44:44 2014
elapsed time: 35 seconds

Is this something caused by a mistake in the building process or a mistake in 
the usage of the modules?

Original comment by chris.we...@gmail.com on 10 Feb 2014 at 1:47

GoogleCodeExporter commented 8 years ago
You still have "vc10" binaries in your path. To use the vc12 binaries, simply 
adjust the path at the top of the opencv_core.java file, in other words: 
s/vc10/vc12/.

Original comment by samuel.a...@gmail.com on 10 Feb 2014 at 2:12

GoogleCodeExporter commented 8 years ago
Thank you it works now, I am such a noob sometimes :)
Now I have another question which is hopefully my final one:

Why do I get a nullpointer exception when calling

BundleAdjusterBase base = new BundleAdjusterBase();
//initialization of imagefeatures,matches and cameras
base.estimate(imageFeaturesP, matchesP, camerasP);

Is there another constructor or do I have to set additional values in order
to initialize it appropriately? There is no documentation available in the
C++ documentation this constructor gets 2 arguments.

2014-02-10 15:12 GMT+01:00 <javacv@googlecode.com>:

Original comment by chris.we...@gmail.com on 10 Feb 2014 at 2:30

GoogleCodeExporter commented 8 years ago
BundleAdjusterBase is an abstract class. It looks like we have to choose 
between BundleAdjusterReproj and BundleAdjusterRay...

Original comment by samuel.a...@gmail.com on 11 Feb 2014 at 2:06

GoogleCodeExporter commented 8 years ago
issue resolved, thanks for your time!!

2014-02-11 3:06 GMT+01:00 <javacv@googlecode.com>:

Original comment by chris.we...@gmail.com on 11 Feb 2014 at 9:54

GoogleCodeExporter commented 8 years ago
The fix has been included in the latest release of JavaCV 0.8. A lot of other 
things have changed with this new version, so please make sure to read the news 
release here:
    http://bytedeco.org/release/2014/04/28/first-release.html

Thanks for reporting!

Original comment by samuel.a...@gmail.com on 29 Apr 2014 at 1:27