* DOCKER CONTAINER WITH DISPLAY ON MAC
https://gist.github.com/andrewssobral/7a5924c475ff936247f237f35d2e3cd7

brew install --cask xquartz

open -a XQuartz
Go to Security Settings and ensure that "Allow connections from network clients" is on

ps aux | grep Xquartz

Allow X11 forwarding via xhost
$ xhost +
This allows any client to connect. If you have security concerns you can append an IP address for a whitelist mechanism.

Alternatively, if you want to limit X11 forwarding to local containers, you can limit clients to localhost only via
$ xhost +localhost
Be ware: You will always have to run xhost + after a restart of X11 as this is not a persistent setting.

Time to test X11 forwarding
Pull the following docker container, set the DISPLAY env and run it...
$ docker pull sshipway/xclock
$ docker run -e DISPLAY=docker.for.mac.host.internal:0 sshipway/xclock

https://github.com/andrewssobral/docker/blob/master/bgslibrary/opencv_4.6.0py38/Dockerfile
docker run -it --rm -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY andrewssobral/bgslibrary:opencv_4.6.0py38 bash


socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
sudo lsof -i -P | grep LISTEN | grep :$PORT
docker run -it --rm -e DISPLAY=host.docker.internal:0 andrewssobral/bgslibrary:opencv_4.6.0py38 bash
python -m pip install --upgrade pip
apt update
apt install x11-apps
xclock
xeyes

make install
export LD_LIBRARY_PATH=/usr/local/lib
cp -r ../bgslibrary-master/dataset .
mkdir config
bgslibrary -uf -fn=dataset/video.avi
config/VideoCapture.xml -> <use_roi>0</use_roi>
config/FrameProcessor.xml -> <enableFrameDifference>1</enableFrameDifference>
bgslibrary -uf -fn=dataset/video.avi
* Uninstall
cat install_manifest.txt | xargs echo rm | sh
rm -rf /usr/local/include/bgslibrary
rm -rf /usr/local/lib/cmake/BGSLibrary

docker volume create bgslibrary
docker volume ls
docker volume inspect bgslibrary
docker run -it --rm --privileged --pid=host -v bgslibrary:/opt/bgslibrary -e DISPLAY=host.docker.internal:0 andrewssobral/bgslibrary:opencv_4.6.0py38 bash
docker volume inspect bgslibrary
docker volume rm bgslibrary

* DOCKER CONTAINER WITH DISPLAY ON MAC
To run a Docker container on Mac with display support, you need to use XQuartz, a free and open-source software that provides an X11 window system for macOS. Here are the steps you need to follow:

Install XQuartz: Download and install XQuartz from the official website (https://www.xquartz.org/).

Enable XQuartz: Open XQuartz and go to XQuartz > Preferences > Security. Make sure that the “Allow connections from network clients” option is checked.

Install socat: Install socat using Homebrew. Run the following command in the Terminal:

Copy code
brew install socat
Run socat: Run socat in the Terminal to forward X11 connections from the Docker container to XQuartz. Run the following command:
bash
Copy code
socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"
Start the Docker container: Start the Docker container with the following command:
csharp
Copy code
docker run -e DISPLAY=host.docker.internal:0 <image-name>
Replace <image-name> with the name of the Docker image you want to run.

Test the display support: Test the display support by running a graphical application inside the Docker container. For example, you can run xeyes:
Copy code
xeyes
If everything is set up correctly, you should see the xeyes application running on your Mac.

---

root@a68691fe5d4a:/opt/bgslibrary-master/build# make install
[ 95%] Built target bgslibrary_core
[100%] Built target bgslibrary
Install the project...
-- Install configuration: "Release"
-- Installing: /usr/local/lib/libbgslibrary_core.so
-- Set runtime path of "/usr/local/lib/libbgslibrary_core.so" to ""
-- Installing: /usr/local/bin/bgslibrary
-- Set runtime path of "/usr/local/bin/bgslibrary" to ""
-- Installing: /usr/local/include/bgslibrary
-- Installing: /usr/local/include/bgslibrary/FrameProcessor.cpp
-- Installing: /usr/local/include/bgslibrary/PreProcessor.cpp
-- Installing: /usr/local/include/bgslibrary/Main.cpp
-- Installing: /usr/local/include/bgslibrary/utils
-- Installing: /usr/local/include/bgslibrary/utils/GenericKeys.h
-- Installing: /usr/local/include/bgslibrary/utils/ILoadSaveConfig.h
-- Installing: /usr/local/include/bgslibrary/utils/GenericMacros.h
-- Installing: /usr/local/include/bgslibrary/FrameProcessor.h
-- Installing: /usr/local/include/bgslibrary/tools
-- Installing: /usr/local/include/bgslibrary/tools/ForegroundMaskAnalysis.h
-- Installing: /usr/local/include/bgslibrary/tools/FuzzyUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/ForegroundMaskAnalysis.cpp
-- Installing: /usr/local/include/bgslibrary/tools/PixelUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/PixelUtils.h
-- Installing: /usr/local/include/bgslibrary/tools/FuzzyUtils.h
-- Installing: /usr/local/include/bgslibrary/tools/PerformanceUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/PerformanceUtils.h
-- Installing: /usr/local/include/bgslibrary/algorithms
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PixelBasedAdaptiveSegmenter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelMog.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelSom.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelGauss.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/Types.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzyGauss.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelGauss.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzySom.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModel.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelMog.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelSom.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzyGauss.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzySom.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModel.h
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints/two_points.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints/two_points.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV2.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta/sdLaMa091.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta/sdLaMa091.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingMean.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/algorithms.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPAdaptiveMedian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/vibe-background-sequential.h
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/vibe-background-sequential.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/LICENSE
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LOBSTER.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MotionDetection.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/maxflow.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MotionDetection.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEImage.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/graph.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEDefs.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/block.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEDefs.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/graph.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEHistogram.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEHistogram.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEImage.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackgroundVuMeter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackgroundVuMeter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBMixtureOfGaussians.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UV.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzySugenoIntegral.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPTexture.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FrameDifference.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSimpleGaussian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/GMG.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UV.h
-- Installing: /usr/local/include/bgslibrary/algorithms/CodeBook.h
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveSelectiveBackgroundLearning.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyGaussian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints.h
-- Installing: /usr/local/include/bgslibrary/algorithms/CodeBook.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV1.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPZivkovicAGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS/IMBS.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS/IMBS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/IndependentMultimodal.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UV.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzyChoquetIntegral.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/SuBSENSE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPMean.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Eigenbackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/AdaptiveMedianBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/ZivkovicAGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Eigenbackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/PratiMediodBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Error.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/PratiMediodBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/AdaptiveMedianBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Error.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/TextureBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/GrimsonGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/ZivkovicAGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/BgsParams.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/WrenGA.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/WrenGA.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/MeanBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Bgs.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Image.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/TextureBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/GrimsonGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/MeanBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Image.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/IBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe.h
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_/MyBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_/MyBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPWrenGA.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KNN.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/algorithms.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PAWCS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveBackgroundLearning.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBMixtureOfGaussians.h
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveBackgroundLearning.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPEigenbackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyAdaptiveSOM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/IndependentMultimodal.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS/PBAS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS/PBAS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBAdaptiveSOM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobExtraction.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BackgroundSubtractionAPI.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/CMultiLayerBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobResult.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/OpenCvLegacyIncludes.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/blob.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/OpenCvDataConversion.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobExtraction.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/LocalBinaryPattern.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobLibraryConfiguration.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/blob.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/CMultiLayerBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobResult.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/LocalBinaryPattern.h
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveSelectiveBackgroundLearning.h
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingMean.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/MRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FMRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FMRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/MRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/GMG.h
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingVariance.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPZivkovicAGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/DistanceUtils.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_3ch3t.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_3ch1t.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP_.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLOBSTER.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorSuBSENSE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP_.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorPAWCS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLOBSTER.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorSuBSENSE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorPAWCS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_s3ch.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/RandUtils.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_1ch.i
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzyChoquetIntegral.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPPratiMediod.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPAdaptiveMedian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SuBSENSE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/StaticFrameDifference.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KNN.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyGaussian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LOBSTER.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/KernelTable.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGmodel.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGSubtractor.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/KernelTable.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGmodel.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGSubtractor.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV1.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPGrimsonGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiCue.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiCue.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPWrenGA.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPPratiMediod.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PixelBasedAdaptiveSegmenter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV2.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSimpleGaussian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBAdaptiveSOM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPMean.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FrameDifference.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingVariance.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPTexture.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PAWCS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/StaticFrameDifference.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyAdaptiveSOM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzySugenoIntegral.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPGrimsonGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPEigenbackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UV.cpp
-- Installing: /usr/local/include/bgslibrary/PreProcessor.h
-- Installing: /usr/local/include/bgslibrary/VideoCapture.cpp
-- Installing: /usr/local/include/bgslibrary/VideoCapture.h
-- Installing: /usr/local/include/bgslibrary/IFrameProcessor.h
-- Installing: /usr/local/include/bgslibrary/VideoAnalysis.cpp
-- Installing: /usr/local/include/bgslibrary/VideoAnalysis.h
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryTargets.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryTargets-release.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/FindOpenCV.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryConfig.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryConfigVersion.cmake
root@a68691fe5d4a:/opt/bgslibrary-master/build#

---

[100%] Built target bgslibrary
Install the project...
-- Install configuration: "Release"
-- Installing: /usr/local/lib/libbgslibrary_core.dylib
-- Installing: /usr/local/bin/bgslibrary
-- Installing: /usr/local/include/bgslibrary
-- Installing: /usr/local/include/bgslibrary/tools
-- Installing: /usr/local/include/bgslibrary/tools/PixelUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/ForegroundMaskAnalysis.h
-- Installing: /usr/local/include/bgslibrary/tools/FuzzyUtils.h
-- Installing: /usr/local/include/bgslibrary/tools/PixelUtils.h
-- Installing: /usr/local/include/bgslibrary/tools/ForegroundMaskAnalysis.cpp
-- Installing: /usr/local/include/bgslibrary/tools/PerformanceUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/FuzzyUtils.cpp
-- Installing: /usr/local/include/bgslibrary/tools/PerformanceUtils.h
-- Installing: /usr/local/include/bgslibrary/PreProcessor.cpp
-- Installing: /usr/local/include/bgslibrary/VideoCapture.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyGaussian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UV.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PixelBasedAdaptiveSegmenter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzyChoquetIntegral.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyAdaptiveSOM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UV.h
-- Installing: /usr/local/include/bgslibrary/algorithms/algorithms.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV1.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPWrenGA.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SuBSENSE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPTexture.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/SuBSENSE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSimpleGaussian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta/sdLaMa091.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta/sdLaMa091.h
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPMean.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/IBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/StaticFrameDifference.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/MRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/MRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FMRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2F/T2FMRF.h
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints.h
-- Installing: /usr/local/include/bgslibrary/algorithms/IndependentMultimodal.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPAdaptiveMedian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/algorithms.h
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_/MyBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/_template_/MyBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FrameDifference.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS/PBAS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/PBAS/PBAS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPEigenbackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzySugenoIntegral.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV2.h
-- Installing: /usr/local/include/bgslibrary/algorithms/IndependentMultimodal.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelSom.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzyGauss.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelMog.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/Types.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelGauss.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelGauss.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzySom.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModel.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzySom.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModel.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelMog.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelFuzzyGauss.h
-- Installing: /usr/local/include/bgslibrary/algorithms/lb/BGModelSom.h
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackgroundVuMeter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter/TBackgroundVuMeter.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPWrenGA.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/GMG.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPZivkovicAGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveBackgroundLearning.h
-- Installing: /usr/local/include/bgslibrary/algorithms/FrameDifference.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV2.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPEigenbackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPPratiMediod.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPGrimsonGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingMean.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MixtureOfGaussianV1.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/VuMeter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPZivkovicAGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UV.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiCue.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PixelBasedAdaptiveSegmenter.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LOBSTER.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBMixtureOfGaussians.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingVariance.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveBackgroundLearning.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGSubtractor.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGmodel.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGSubtractor.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/NPBGmodel.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/KernelTable.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KDE/KernelTable.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FMRF_UM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiCue.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/GMG.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KNN.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingVariance.h
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPPratiMediod.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyGaussian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPTexture.h
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSimpleGaussian.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEDefs.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/maxflow.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEImage.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/graph.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MotionDetection.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEHistogram.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/graph.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MotionDetection.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEHistogram.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/block.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEDefs.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF/MEImage.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPGrimsonGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBAdaptiveSOM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/CodeBook.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/GrimsonGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Error.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/ZivkovicAGMM.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/MeanBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/ZivkovicAGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/GrimsonGMM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Image.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Error.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/TextureBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Eigenbackground.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/WrenGA.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/AdaptiveMedianBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/MeanBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Bgs.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/PratiMediodBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/WrenGA.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/AdaptiveMedianBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/BgsParams.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Eigenbackground.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/TextureBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/PratiMediodBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/dp/Image.h
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS/IMBS.hpp
-- Installing: /usr/local/include/bgslibrary/algorithms/IMBS/IMBS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/SigmaDelta.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzyChoquetIntegral.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/OpenCvDataConversion.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobExtraction.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/OpenCvLegacyIncludes.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/LocalBinaryPattern.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobLibraryConfiguration.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/blob.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/blob.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/CMultiLayerBGS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BackgroundSubtractionAPI.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobExtraction.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/CMultiLayerBGS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/LocalBinaryPattern.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobResult.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/MultiLayer/BlobResult.h
-- Installing: /usr/local/include/bgslibrary/algorithms/DPAdaptiveMedian.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PAWCS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/KNN.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBMixtureOfGaussians.h
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/LICENSE
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/vibe-background-sequential.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/ViBe/vibe-background-sequential.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBFuzzyAdaptiveSOM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/StaticFrameDifference.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBP_MRF.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/FuzzySugenoIntegral.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/DistanceUtils.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorSuBSENSE.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP_.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/RandUtils.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorPAWCS.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_3ch3t.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_1ch.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorSuBSENSE.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLOBSTER.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorPAWCS.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_3ch1t.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLOBSTER.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP_.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_16bits_dbcross_s3ch.i
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/BackgroundSubtractorLBSP.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBSP/LBSP_.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LOBSTER.h
-- Installing: /usr/local/include/bgslibrary/algorithms/T2FGMM_UV.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveSelectiveBackgroundLearning.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/AdaptiveSelectiveBackgroundLearning.h
-- Installing: /usr/local/include/bgslibrary/algorithms/WeightedMovingMean.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/DPMean.h
-- Installing: /usr/local/include/bgslibrary/algorithms/LBAdaptiveSOM.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints/two_points.cpp
-- Installing: /usr/local/include/bgslibrary/algorithms/TwoPoints/two_points.h
-- Installing: /usr/local/include/bgslibrary/algorithms/CodeBook.h
-- Installing: /usr/local/include/bgslibrary/algorithms/PAWCS.cpp
-- Installing: /usr/local/include/bgslibrary/utils
-- Installing: /usr/local/include/bgslibrary/utils/GenericKeys.h
-- Installing: /usr/local/include/bgslibrary/utils/ILoadSaveConfig.h
-- Installing: /usr/local/include/bgslibrary/utils/GenericMacros.h
-- Installing: /usr/local/include/bgslibrary/FrameProcessor.h
-- Installing: /usr/local/include/bgslibrary/VideoAnalysis.h
-- Installing: /usr/local/include/bgslibrary/VideoAnalysis.cpp
-- Installing: /usr/local/include/bgslibrary/IFrameProcessor.h
-- Installing: /usr/local/include/bgslibrary/FrameProcessor.cpp
-- Installing: /usr/local/include/bgslibrary/VideoCapture.h
-- Installing: /usr/local/include/bgslibrary/Main.cpp
-- Installing: /usr/local/include/bgslibrary/PreProcessor.h
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryTargets.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryTargets-release.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/FindOpenCV.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryConfig.cmake
-- Installing: /usr/local/lib/cmake/BGSLibrary/BGSLibraryConfigVersion.cmake
andrewssobral@macbookpro build 