-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopencv3.log
2887 lines (1629 loc) · 79 KB
/
opencv3.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Removing old build directory
Removing old work directory
BUILD START: opencv-3.0-np19py27_0
Fetching package metadata: ........
Solving package specifications: .
CLINK [1;32;40mC:\Anaconda\32\conda-bld\work\opencv-3.0.0 {git}
[1;30;40m{lamb} [0mcall "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86
Setting environment for using Microsoft Visual Studio 2008 x86 tools.
CLINK [1;32;40mC:\Anaconda\32\conda-bld\work\opencv-3.0.0 {git}
[1;30;40m{lamb} [0mREM ===== end generated header =====
"Copying stdint.h for windows"
cp: cannot create regular file `..\\modules\\videoio\\src\\stdint.h': No such file or directory
cp: cannot create regular file `..\\modules\\calib3d\\src\\stdint.h': No such file or directory
-- The CXX compiler identification is MSVC 15.0.30729.1
-- The C compiler identification is MSVC 15.0.30729.1
-- Check for working CXX compiler using: Visual Studio 9 2008
-- Check for working CXX compiler using: Visual Studio 9 2008 -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working C compiler using: Visual Studio 9 2008
-- Check for working C compiler using: Visual Studio 9 2008 -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Performing Test HAVE_CXX_FSIGNED_CHAR
-- Performing Test HAVE_CXX_FSIGNED_CHAR - Failed
-- Performing Test HAVE_C_FSIGNED_CHAR
-- Performing Test HAVE_C_FSIGNED_CHAR - Failed
-- Check if the system is big endian
-- Searching 16 bit integer
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - not found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Looking for fseeko
-- Looking for fseeko - not found
-- Looking for unistd.h
-- Looking for unistd.h - not found
-- Check size of off64_t
-- Check size of off64_t - failed
-- Looking for assert.h
-- Looking for assert.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for io.h
-- Looking for io.h - found
-- Looking for jbg_newlen
-- Looking for jbg_newlen - not found
-- Looking for mmap
-- Looking for mmap - not found
-- Looking for search.h
-- Looking for search.h - found
-- Looking for string.h
-- Looking for string.h - found
-- Looking for unistd.h
-- Looking for unistd.h - not found
-- ICV: Downloading ippicv_windows_20141027.zip...
-- ICV: Unpacking ippicv_windows_20141027.zip to C:/Anaconda/32/conda-bld/work/opencv-3.0.0/3rdparty/ippicv/unpack...
-- ICV: Package successfully downloaded
-- found IPP (ICV version): 8.2.1 [8.2.1]
-- at: C:/Anaconda/32/conda-bld/work/opencv-3.0.0/3rdparty/ippicv/unpack/ippicv_win
-- Found PythonInterp: C:/Anaconda/32/envs/_build/python.exe (found suitable version "2.7.10", minimum required is "2.7")
-- Found PythonLibs: C:/Anaconda/32/envs/_build/libs/python27.lib (found suitable exact version "2.7.10")
-- Could NOT find PythonInterp: Found unsuitable version "2.7.10", but required is at least "3.4" (found C:/Anaconda/32/envs/_build/python.exe)
-- Could NOT find PythonInterp: Found unsuitable version "2.7.10", but required is at least "3.2" (found C:/Anaconda/32/envs/_build/python.exe)
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- Found Matlab: C:/Program Files/MATLAB/R2015a/bin/mex.bat
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- videoio: Removing WinRT API headers by default
--
-- General configuration for OpenCV 3.0.0 =====================================
-- Version control: unknown
--
-- Platform:
-- Host: Windows 6.1 AMD64
-- CMake: 2.8.12.2
-- CMake generator: Visual Studio 9 2008
-- CMake build tool: C:/PROGRA~2/MICROS~1.0/Common7/IDE/devenv.com
-- MSVC: 1500
--
-- C/C++:
-- Built as dynamic libs?: YES
-- C++ Compiler: C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/bin/cl.exe (ver 15.0.30729.1)
-- C++ flags (Release): /DWIN32 /D_WINDOWS /W4 /GR /EHa /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /arch:SSE2 /Oi /fp:fast /wd4251 /wd4324 /MP1 /MD /O2 /Ob2 /D NDEBUG /Zi
-- C++ flags (Debug): /DWIN32 /D_WINDOWS /W4 /GR /EHa /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /arch:SSE2 /Oi /fp:fast /wd4251 /wd4324 /MP1 /D_DEBUG /MDd /Zi /Ob0 /Od /RTC1
-- C Compiler: C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/bin/cl.exe
-- C flags (Release): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /arch:SSE2 /Oi /fp:fast /MP1 /MD /O2 /Ob2 /D NDEBUG /Zi
-- C flags (Debug): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /arch:SSE2 /Oi /fp:fast /MP1 /D_DEBUG /MDd /Zi /Ob0 /Od /RTC1
-- Linker flags (Release): /machine:X86 /INCREMENTAL:NO /debug
-- Linker flags (Debug): /machine:X86 /debug /INCREMENTAL:YES
-- Precompiled headers: YES
-- Extra dependencies: comctl32 gdi32 ole32 setupapi ws2_32 vfw32
-- 3rdparty dependencies: zlib libjpeg libwebp libpng libtiff libjasper IlmImf ippicv
--
-- OpenCV modules:
-- To be built: hal core flann imgproc ml photo video imgcodecs shape videoio highgui objdetect superres ts features2d calib3d stitching videostab python2
-- Disabled: world
-- Disabled by dependency: -
-- Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev java python3 viz
--
-- Windows RT support: NO
--
-- GUI:
-- QT: NO
-- Win32 UI: YES
-- OpenGL support: NO
-- VTK support: NO
--
-- Media I/O:
-- ZLib: build (ver 1.2.8)
-- JPEG: build (ver 90)
-- WEBP: build (ver 0.3.1)
-- PNG: build (ver 1.5.12)
-- TIFF: build (ver 42 - 4.0.2)
-- JPEG 2000: build (ver 1.900.1)
-- OpenEXR: build (ver 1.7.1)
-- GDAL: NO
--
-- Video I/O:
-- Video for Windows: YES
-- DC1394 1.x: NO
-- DC1394 2.x: NO
-- FFMPEG: NO
-- codec: NO
-- format: NO
-- util: NO
-- swscale: NO
-- resample: NO
-- gentoo-style: NO
-- OpenNI: NO
-- OpenNI PrimeSensor Modules: NO
-- OpenNI2: NO
-- PvAPI: NO
-- GigEVisionSDK: NO
-- DirectShow: YES
-- Media Foundation: NO
-- XIMEA: NO
-- Intel PerC: NO
--
-- Other third-party libraries:
-- Use IPP: 8.2.1 [8.2.1]
-- at: C:/Anaconda/32/conda-bld/work/opencv-3.0.0/3rdparty/ippicv/unpack/ippicv_win
-- Use IPP Async: NO
-- Use Eigen: YES (ver 3.2.2)
-- Use TBB: NO
-- Use OpenMP: NO
-- Use GCD NO
-- Use Concurrency NO
-- Use C=: NO
-- Use pthreads for parallel for:
-- NO
-- Use Cuda: NO
-- Use OpenCL: NO
--
-- Python 2:
-- Interpreter: C:/Anaconda/32/envs/_build/python.exe (ver 2.7.10)
-- Libraries: C:/Anaconda/32/envs/_build/libs/python27.lib (ver 2.7.10)
-- numpy: C:/Anaconda/32/envs/_build/lib/site-packages/numpy/core/include (ver 1.9.2)
-- packages path: C:/Anaconda/32/envs/_build/Lib/site-packages
--
-- Python 3:
-- Interpreter: NO
--
-- Python (for build): C:/Anaconda/32/envs/_build/python.exe
--
-- Java:
-- ant: NO
-- JNI: NO
-- Java wrappers: NO
-- Java tests: NO
--
-- Matlab:
-- mex: C:/Program Files/MATLAB/R2015a/bin/mex.bat
-- Compiler/generator: Not working (bindings will not be generated)
--
-- Tests and samples:
-- Tests: NO
-- Performance tests: NO
-- C/C++ Examples: NO
--
-- Install path: C:/Anaconda/32/envs/_build/Library
--
-- cvconfig.h is in: C:/Anaconda/32/conda-bld/work/opencv-3.0.0/build
-- -----------------------------------------------------------------
--
-- Configuring done
-- Generating done
-- Build files have been written to: C:/Anaconda/32/conda-bld/work/opencv-3.0.0/build
Microsoft (R) Visual Studio Version 9.0.21022.8.
Copyright (C) Microsoft Corp. All rights reserved.
------ Build started: Project: zlib, Configuration: Release Win32 ------
Compiling...
adler32.c
zutil.c
uncompr.c
trees.c
inffast.c
inftrees.c
infback.c
inflate.c
gzwrite.c
gzread.c
gzlib.c
gzclose.c
deflate.c
crc32.c
compress.c
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\zlib\zlib.dir\Release\BuildLog.htm"
zlib - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_hal, Configuration: Release Win32 ------
Compiling...
opencv_hal_pch.cpp
Compiling...
warp.cpp
stat.cpp
resize.cpp
matrix.cpp
mathfuncs.cpp
filter.cpp
color.cpp
arithm.cpp
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\hal\opencv_hal.dir\Release\BuildLog.htm"
opencv_hal - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_core, Configuration: Release Win32 ------
Generating opencl_kernels_core.cpp, opencl_kernels_core.hpp
Compiling...
opencv_core_pch.cpp
Compiling...
opencl_kernels_core.cpp
opencl_core.cpp
opencl_clamdfft.cpp
opencl_clamdblas.cpp
umatrix.cpp
types.cpp
tables.cpp
system.cpp
stl.cpp
stat.cpp
rand.cpp
persistence.cpp
pca.cpp
parallel_pthreads.cpp
parallel.cpp
out.cpp
opengl.cpp
ocl.cpp
matrix.cpp
matop.cpp
Generating Code...
Compiling...
matmul.cpp
mathfuncs.cpp
lpsolver.cpp
lda.cpp
lapack.cpp
kmeans.cpp
gl_core_3_1.cpp
glob.cpp
dxt.cpp
downhill_simplex.cpp
directx.cpp
datastructs.cpp
cuda_stream.cpp
cuda_info.cpp
cuda_host_mem.cpp
cuda_gpu_mat.cpp
copy.cpp
convert.cpp
conjugate_gradient.cpp
command_line_parser.cpp
Generating Code...
Compiling...
array.cpp
arithm.cpp
alloc.cpp
algorithm.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_core300.lib and object ..\..\lib\Release\opencv_core300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\core\opencv_core.dir\Release\BuildLog.htm"
opencv_core - 0 error(s), 0 warning(s)
------ Build started: Project: libtiff, Configuration: Release Win32 ------
Compiling...
tif_stream.cxx
Compiling...
tif_aux.c
tif_win32.c
tif_zip.c
tif_write.c
tif_warning.c
tif_version.c
tif_tile.c
tif_thunder.c
tif_swab.c
tif_strip.c
tif_read.c
tif_print.c
tif_predict.c
tif_pixarlog.c
tif_packbits.c
tif_open.c
tif_ojpeg.c
tif_next.c
tif_lzw.c
tif_lzma.c
Generating Code...
Compiling...
tif_luv.c
tif_jpeg.c
tif_jpeg_12.c
tif_jbig.c
tif_getimage.c
tif_flush.c
tif_fax3sm.c
tif_fax3.c
tif_extension.c
tif_error.c
tif_dumpmode.c
tif_dirwrite.c
tif_dirread.c
tif_dirinfo.c
tif_dir.c
tif_compress.c
tif_color.c
tif_codec.c
tif_close.c
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\libtiff\libtiff.dir\Release\BuildLog.htm"
libtiff - 0 error(s), 0 warning(s)
------ Build started: Project: libwebp, Configuration: Release Win32 ------
Compiling...
utils.c
thread.c
rescaler.c
quant_levels_dec.c
quant_levels.c
huffman_encode.c
huffman.c
filters.c
color_cache.c
bit_writer.c
bit_reader.c
muxread.c
muxinternal.c
muxedit.c
webpenc.c
token.c
syntax.c
picture.c
iterator.c
histogram.c
Generating Code...
Compiling...
filter.c
cost.c
config.c
backward_references.c
analysis.c
yuv.c
upsampling_sse2.c
upsampling_neon.c
upsampling.c
lossless.c
enc_sse2.c
enc_neon.c
enc.c
dec_sse2.c
dec_neon.c
dec.c
cpu.c
webp.c
vp8.c
io.c
Generating Code...
Compiling...
idec.c
buffer.c
Generating Code...
Compiling...
alpha.c
Compiling...
vp8l.c
Compiling...
tree.c
Compiling...
quant.c
Compiling...
layer.c
Compiling...
frame.c
Compiling...
alpha.c
Compiling...
vp8l.c
Compiling...
tree.c
Compiling...
quant.c
Compiling...
layer.c
Compiling...
frame.c
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\libwebp\libwebp.dir\Release\BuildLog.htm"
libwebp - 0 error(s), 0 warning(s)
------ Build started: Project: libjasper, Configuration: Release Win32 ------
Compiling...
jas_cm.c
jpc_util.c
jpc_tsfb.c
jpc_tagtree.c
jpc_t2enc.c
jpc_t2dec.c
jpc_t2cod.c
jpc_t1enc.c
jpc_t1dec.c
jpc_t1cod.c
jpc_qmfb.c
jpc_mqenc.c
jpc_mqdec.c
jpc_mqcod.c
jpc_mct.c
jpc_math.c
jpc_enc.c
jpc_dec.c
jpc_cs.c
jpc_bs.c
Generating Code...
Compiling...
jp2_enc.c
jp2_dec.c
jp2_cod.c
jas_version.c
jas_tvp.c
jas_tmr.c
jas_string.c
jas_stream.c
jas_seq.c
jas_malloc.c
jas_init.c
jas_image.c
jas_iccdata.c
jas_icc.c
jas_getopt.c
jas_debug.c
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\libjasper\libjasper.dir\Release\BuildLog.htm"
libjasper - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_imgproc, Configuration: Release Win32 ------
Generating opencl_kernels_imgproc.cpp, opencl_kernels_imgproc.hpp
Compiling...
opencv_imgproc_pch.cpp
Compiling...
opencl_kernels_imgproc.cpp
utils.cpp
undistort.cpp
thresh.cpp
templmatch.cpp
tables.cpp
sumpixels.cpp
subdivision2d.cpp
smooth.cpp
shapedescr.cpp
segmentation.cpp
samplers.cpp
rotcalipers.cpp
pyramids.cpp
phasecorr.cpp
morph.cpp
moments.cpp
min_enclosing_triangle.cpp
matchcontours.cpp
lsd.cpp
Generating Code...
Compiling...
linefit.cpp
intersection.cpp
imgwarp.cpp
hough.cpp
histogram.cpp
hershey_fonts.cpp
grabcut.cpp
geometry.cpp
generalized_hough.cpp
gabor.cpp
floodfill.cpp
filter.cpp
featureselect.cpp
emd.cpp
drawing.cpp
distransform.cpp
deriv.cpp
demosaicing.cpp
cornersubpix.cpp
corner.cpp
Generating Code...
Compiling...
convhull.cpp
contours.cpp
connectedcomponents.cpp
colormap.cpp
color.cpp
clahe.cpp
canny.cpp
blend.cpp
approx.cpp
accum.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_imgproc300.lib and object ..\..\lib\Release\opencv_imgproc300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\imgproc\opencv_imgproc.dir\Release\BuildLog.htm"
opencv_imgproc - 0 error(s), 0 warning(s)
------ Build started: Project: libpng, Configuration: Release Win32 ------
Compiling...
png.c
pngwutil.c
pngwtran.c
pngwrite.c
pngwio.c
pngtrans.c
pngset.c
pngrutil.c
pngrtran.c
pngrio.c
pngread.c
pngpread.c
pngmem.c
pngget.c
pngerror.c
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\libpng\libpng.dir\Release\BuildLog.htm"
libpng - 0 error(s), 0 warning(s)
------ Build started: Project: libjpeg, Configuration: Release Win32 ------
Compiling...
jaricom.c
jutils.c
jquant2.c
jquant1.c
jmemmgr.c
jmemansi.c
jidctint.c
jidctfst.c
jidctflt.c
jfdctint.c
jfdctfst.c
jfdctflt.c
jerror.c
jdtrans.c
jdsample.c
jdpostct.c
jdmerge.c
jdmaster.c
jdmarker.c
jdmainct.c
Generating Code...
Compiling...
jdinput.c
jdhuff.c
jddctmgr.c
jdcolor.c
jdcoefct.c
jdatasrc.c
jdatadst.c
jdarith.c
jdapistd.c
jdapimin.c
jctrans.c
jcsample.c
jcprepct.c
jcparam.c
jcomapi.c
jcmaster.c
jcmarker.c
jcmainct.c
jcinit.c
jchuff.c
Generating Code...
Compiling...
jcdctmgr.c
jccolor.c
jccoefct.c
jcarith.c
jcapistd.c
jcapimin.c
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\libjpeg\libjpeg.dir\Release\BuildLog.htm"
libjpeg - 0 error(s), 0 warning(s)
------ Build started: Project: IlmImf, Configuration: Release Win32 ------
Compiling...
half.cpp
ImfZipCompressor.cpp
ImfWav.cpp
ImfVersion.cpp
ImfVecAttribute.cpp
ImfTimeCodeAttribute.cpp
ImfTimeCode.cpp
ImfTileOffsets.cpp
ImfTiledRgbaFile.cpp
ImfTiledOutputFile.cpp
ImfTiledMisc.cpp
ImfTiledInputFile.cpp
ImfTileDescriptionAttribute.cpp
ImfThreading.cpp
ImfTestFile.cpp
ImfStringVectorAttribute.cpp
ImfStringAttribute.cpp
ImfStdIO.cpp
ImfStandardAttributes.cpp
ImfScanLineInputFile.cpp
Generating Code...
Compiling...
ImfRleCompressor.cpp
ImfRgbaYca.cpp
ImfRgbaFile.cpp
ImfRationalAttribute.cpp
ImfRational.cpp
ImfPxr24Compressor.cpp
ImfPreviewImageAttribute.cpp
ImfPreviewImage.cpp
ImfPizCompressor.cpp
ImfOutputFile.cpp
ImfOpaqueAttribute.cpp
ImfMultiView.cpp
ImfMisc.cpp
ImfMatrixAttribute.cpp
ImfLut.cpp
ImfLineOrderAttribute.cpp
ImfKeyCodeAttribute.cpp
ImfKeyCode.cpp
ImfIO.cpp
ImfIntAttribute.cpp
Generating Code...
Compiling...
ImfInputFile.cpp
ImfHuf.cpp
ImfHeader.cpp
ImfFramesPerSecond.cpp
ImfFrameBuffer.cpp
ImfFloatAttribute.cpp
ImfEnvmapAttribute.cpp
ImfEnvmap.cpp
ImfDoubleAttribute.cpp
ImfCRgbaFile.cpp
ImfConvert.cpp
ImfCompressor.cpp
ImfCompressionAttribute.cpp
ImfChromaticitiesAttribute.cpp
ImfChromaticities.cpp
ImfChannelListAttribute.cpp
ImfChannelList.cpp
ImfBoxAttribute.cpp
ImfB44Compressor.cpp
ImfAttribute.cpp
Generating Code...
Compiling...
ImfAcesFile.cpp
ImathVec.cpp
ImathRandom.cpp
ImathMatrixAlgo.cpp
ImathFun.cpp
ImathColorAlgo.cpp
IlmThreadWin32.cpp
IlmThreadSemaphoreWin32.cpp
IlmThreadSemaphore.cpp
IlmThreadPool.cpp
IlmThreadMutexWin32.cpp
IlmThreadMutex.cpp
IlmThread.cpp
IexThrowErrnoExc.cpp
IexBaseExc.cpp
Generating Code...
Creating library...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\3rdparty\openexr\IlmImf.dir\Release\BuildLog.htm"
IlmImf - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_imgcodecs, Configuration: Release Win32 ------
Compiling...
opencv_imgcodecs_pch.cpp
Compiling...
rgbe.cpp
bitstrm.cpp
grfmt_webp.cpp
grfmt_tiff.cpp
grfmt_sunras.cpp
grfmt_pxm.cpp
grfmt_png.cpp
grfmt_jpeg2000.cpp
grfmt_jpeg.cpp
grfmt_hdr.cpp
grfmt_gdal.cpp
grfmt_exr.cpp
grfmt_bmp.cpp
grfmt_base.cpp
utils.cpp
loadsave.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_imgcodecs300.lib and object ..\..\lib\Release\opencv_imgcodecs300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\imgcodecs\opencv_imgcodecs.dir\Release\BuildLog.htm"
opencv_imgcodecs - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_videoio, Configuration: Release Win32 ------
Compiling...
opencv_videoio_pch.cpp
Compiling...
cap_vfw.cpp
cap_dshow.cpp
cap_cmu.cpp
cap_mjpeg_decoder.cpp
..\..\..\modules\videoio\src\cap_mjpeg_decoder.cpp(793) : error C2039: 'data' : is not a member of 'std::vector<_Ty>'
with
[
_Ty=char
]
cap_mjpeg_encoder.cpp
cap_images.cpp
cap.cpp
Generating Code...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\videoio\opencv_videoio.dir\Release\BuildLog.htm"
opencv_videoio - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_highgui, Configuration: Release Win32 ------
Compiling...
opencv_highgui_pch.cpp
Compiling...
window_w32.cpp
window.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\highgui\opencv_highgui.dir\Release\BuildLog.htm"
opencv_highgui - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_flann, Configuration: Release Win32 ------
Compiling...
opencv_flann_pch.cpp
Compiling...
miniflann.cpp
flann.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_flann300.lib and object ..\..\lib\Release\opencv_flann300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\flann\opencv_flann.dir\Release\BuildLog.htm"
opencv_flann - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_ml, Configuration: Release Win32 ------
Compiling...
opencv_ml_pch.cpp
Compiling...
tree.cpp
testset.cpp
svm.cpp
rtrees.cpp
nbayes.cpp
lr.cpp
knearest.cpp
kdtree.cpp
inner_functions.cpp
gbt.cpp
em.cpp
data.cpp
boost.cpp
ann_mlp.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_ml300.lib and object ..\..\lib\Release\opencv_ml300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\ml\opencv_ml.dir\Release\BuildLog.htm"
opencv_ml - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_features2d, Configuration: Release Win32 ------
Generating opencl_kernels_features2d.cpp, opencl_kernels_features2d.hpp
Compiling...
opencv_features2d_pch.cpp
Compiling...
opencl_kernels_features2d.cpp
nldiffusion_functions.cpp
KAZEFeatures.cpp
fed.cpp
AKAZEFeatures.cpp
orb.cpp
mser.cpp
matchers.cpp
keypoint.cpp
kaze.cpp
gftt.cpp
feature2d.cpp
fast_score.cpp
fast.cpp
evaluation.cpp
dynamic.cpp
draw.cpp
brisk.cpp
blobdetector.cpp
bagofwords.cpp
Generating Code...
Compiling...
akaze.cpp
agast_score.cpp
agast.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\features2d\opencv_features2d.dir\Release\BuildLog.htm"
opencv_features2d - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_photo, Configuration: Release Win32 ------
Generating opencl_kernels_photo.cpp, opencl_kernels_photo.hpp
Compiling...
opencv_photo_pch.cpp
Compiling...
opencl_kernels_photo.cpp
tonemap.cpp
seamless_cloning_impl.cpp
seamless_cloning.cpp
npr.cpp
merge.cpp
inpaint.cpp
hdr_common.cpp
denoising.cuda.cpp
denoising.cpp
denoise_tvl1.cpp
contrast_preserve.cpp
calibrate.cpp
align.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_photo300.lib and object ..\..\lib\Release\opencv_photo300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\photo\opencv_photo.dir\Release\BuildLog.htm"
opencv_photo - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_video, Configuration: Release Win32 ------
Generating opencl_kernels_video.cpp, opencl_kernels_video.hpp
Compiling...
opencv_video_pch.cpp
Compiling...
opencl_kernels_video.cpp
tvl1flow.cpp
optflowgf.cpp
lkpyramid.cpp
kalman.cpp
ecc.cpp
compat_video.cpp
camshift.cpp
bgfg_KNN.cpp
bgfg_gaussmix2.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_video300.lib and object ..\..\lib\Release\opencv_video300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\video\opencv_video.dir\Release\BuildLog.htm"
opencv_video - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_calib3d, Configuration: Release Win32 ------
Generating opencl_kernels_calib3d.cpp, opencl_kernels_calib3d.hpp
Compiling...
opencv_calib3d_pch.cpp
Compiling...
opencl_kernels_calib3d.cpp
upnp.cpp
triangulate.cpp
stereosgbm.cpp
stereobm.cpp
solvepnp.cpp
rho.cpp
quadsubpix.cpp
ptsetreg.cpp
posit.cpp
polynom_solver.cpp
p3p.cpp
levmarq.cpp
homography_decomp.cpp
fundam.cpp
five-point.cpp
fisheye.cpp
epnp.cpp
dls.cpp
compat_stereo.cpp
Generating Code...
Compiling...
compat_ptsetreg.cpp
circlesgrid.cpp
checkchessboard.cpp
calibration.cpp
calibinit.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\calib3d\opencv_calib3d.dir\Release\BuildLog.htm"
opencv_calib3d - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_objdetect, Configuration: Release Win32 ------
Generating opencl_kernels_objdetect.cpp, opencl_kernels_objdetect.hpp
Compiling...
opencv_objdetect_pch.cpp
Compiling...
opencl_kernels_objdetect.cpp
hog.cpp
haar.cpp
detection_based_tracker.cpp
cascadedetect_convert.cpp
cascadedetect.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\objdetect\opencv_objdetect.dir\Release\BuildLog.htm"
opencv_objdetect - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_shape, Configuration: Release Win32 ------
Compiling...
opencv_shape_pch.cpp
Compiling...
tps_trans.cpp
sc_dis.cpp
precomp.cpp
hist_cost.cpp
haus_dis.cpp
emdL1.cpp
aff_trans.cpp
Generating Code...
Linking...
Creating library ..\..\lib\Release\opencv_shape300.lib and object ..\..\lib\Release\opencv_shape300.exp
Embedding manifest...
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\shape\opencv_shape.dir\Release\BuildLog.htm"
opencv_shape - 0 error(s), 0 warning(s)
------ Build started: Project: opencv_stitching, Configuration: Release Win32 ------
Generating opencl_kernels_stitching.cpp, opencl_kernels_stitching.hpp
Compiling...
opencv_stitching_pch.cpp
Compiling...
opencl_kernels_stitching.cpp
warpers_cuda.cpp
warpers.cpp
util.cpp
timelapsers.cpp
stitcher.cpp
seam_finders.cpp
motion_estimators.cpp
matchers.cpp
exposure_compensate.cpp
camera.cpp
blenders.cpp
autocalib.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\stitching\opencv_stitching.dir\Release\BuildLog.htm"
opencv_stitching - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_superres, Configuration: Release Win32 ------
Generating opencl_kernels_superres.cpp, opencl_kernels_superres.hpp
Compiling...
opencv_superres_pch.cpp
Compiling...
opencl_kernels_superres.cpp
super_resolution.cpp
optical_flow.cpp
input_array_utility.cpp
frame_source.cpp
btv_l1_cuda.cpp
btv_l1.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\superres\opencv_superres.dir\Release\BuildLog.htm"
opencv_superres - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_videostab, Configuration: Release Win32 ------
Compiling...
opencv_videostab_pch.cpp
Compiling...
wobble_suppression.cpp
stabilizer.cpp
outlier_rejection.cpp
optical_flow.cpp
motion_stabilizing.cpp
log.cpp
inpainting.cpp
global_motion.cpp
frame_source.cpp
fast_marching.cpp
deblurring.cpp
Generating Code...
Linking...
LINK : fatal error LNK1181: cannot open input file '..\..\lib\Release\opencv_videoio300.lib'
Build log was saved at "file://c:\Anaconda\32\conda-bld\work\opencv-3.0.0\build\modules\videostab\opencv_videostab.dir\Release\BuildLog.htm"
opencv_videostab - 1 error(s), 0 warning(s)
------ Build started: Project: opencv_createsamples, Configuration: Release Win32 ------
Compiling...
utility.cpp
createsamples.cpp
Generating Code...
Performing Pre-Link Event...