00001 // **************************************************************************** 00002 // This file is part of the Integrating Vision Toolkit (IVT). 00003 // 00004 // The IVT is maintained by the Karlsruhe Institute of Technology (KIT) 00005 // (www.kit.edu) in cooperation with the company Keyetech (www.keyetech.de). 00006 // 00007 // Copyright (C) 2014 Karlsruhe Institute of Technology (KIT). 00008 // All rights reserved. 00009 // 00010 // Redistribution and use in source and binary forms, with or without 00011 // modification, are permitted provided that the following conditions are met: 00012 // 00013 // 1. Redistributions of source code must retain the above copyright 00014 // notice, this list of conditions and the following disclaimer. 00015 // 00016 // 2. Redistributions in binary form must reproduce the above copyright 00017 // notice, this list of conditions and the following disclaimer in the 00018 // documentation and/or other materials provided with the distribution. 00019 // 00020 // 3. Neither the name of the KIT nor the names of its contributors may be 00021 // used to endorse or promote products derived from this software 00022 // without specific prior written permission. 00023 // 00024 // THIS SOFTWARE IS PROVIDED BY THE KIT AND CONTRIBUTORS “AS IS” AND ANY 00025 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00026 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00027 // DISCLAIMED. IN NO EVENT SHALL THE KIT OR CONTRIBUTORS BE LIABLE FOR ANY 00028 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00029 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00030 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00031 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00032 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00033 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00034 // **************************************************************************** 00035 // **************************************************************************** 00036 // Filename: UncompressedAVICapture.cpp 00037 // Author: Pedram Azad 00038 // Date: 2004 00039 // **************************************************************************** 00040 00041 00042 // **************************************************************************** 00043 // Includes 00044 // **************************************************************************** 00045 00046 #include <new> // for explicitly using correct new/delete operators on VC DSPs 00047 00048 #include "UncompressedAVICapture.h" 00049 #include "VideoAccess/VideoReader.h" 00050 #include "Image/ImageProcessor.h" 00051 #include "Image/ByteImage.h" 00052 00053 00054 00055 // **************************************************************************** 00056 // Constructor / Destructor 00057 // **************************************************************************** 00058 00059 CUncompressedAVICapture::CUncompressedAVICapture(const char *pFilePath, const char *pSecondFilePath) 00060 { 00061 m_sFilePath = ""; 00062 m_sFilePath += pFilePath; 00063 00064 m_sSecondFilePath = ""; 00065 m_pVideoReader = new CVideoReader(); 00066 00067 if (pSecondFilePath) 00068 { 00069 m_sSecondFilePath += pSecondFilePath; 00070 m_bStereo = true; 00071 m_pSecondVideoReader = new CVideoReader(); 00072 } 00073 else 00074 { 00075 m_pSecondVideoReader = 0; 00076 m_bStereo = false; 00077 } 00078 } 00079 00080 CUncompressedAVICapture::~CUncompressedAVICapture() 00081 { 00082 if (m_pVideoReader) 00083 delete m_pVideoReader; 00084 00085 if (m_pSecondVideoReader) 00086 delete m_pSecondVideoReader; 00087 } 00088 00089 00090 // **************************************************************************** 00091 // Methods 00092 // **************************************************************************** 00093 00094 int CUncompressedAVICapture::GetWidth() 00095 { 00096 return m_bOK ? m_pVideoReader->GetWidth() : -1; 00097 } 00098 00099 int CUncompressedAVICapture::GetHeight() 00100 { 00101 return m_bOK ? m_pVideoReader->GetHeight() : -1; 00102 } 00103 00104 CByteImage::ImageType CUncompressedAVICapture::GetType() 00105 { 00106 return m_bOK ? m_pVideoReader->GetType() : (CByteImage::ImageType) -1; 00107 } 00108 00109 00110 bool CUncompressedAVICapture::OpenCamera() 00111 { 00112 CloseCamera(); 00113 00114 m_bOK = false; 00115 00116 if (!m_pVideoReader->OpenUncompressedAVI(m_sFilePath.c_str())) 00117 return false; 00118 00119 if (m_bStereo) 00120 { 00121 if (!m_pSecondVideoReader->OpenUncompressedAVI(m_sSecondFilePath.c_str())) 00122 return false; 00123 00124 if (m_pVideoReader->GetWidth() != m_pSecondVideoReader->GetWidth() || m_pVideoReader->GetHeight() != m_pSecondVideoReader->GetHeight()) 00125 return false; 00126 } 00127 00128 m_bOK = true; 00129 00130 return true; 00131 } 00132 00133 void CUncompressedAVICapture::CloseCamera() 00134 { 00135 m_pVideoReader->Close(); 00136 00137 if (m_pSecondVideoReader) 00138 m_pSecondVideoReader->Close(); 00139 } 00140 00141 bool CUncompressedAVICapture::CaptureImage(CByteImage **ppImages) 00142 { 00143 CByteImage *pImage = m_pVideoReader->ReadNextFrame(); 00144 if (!pImage) 00145 return false; 00146 00147 ImageProcessor::CopyImage(pImage, ppImages[0]); 00148 00149 if (m_bStereo) 00150 { 00151 pImage = m_pSecondVideoReader->ReadNextFrame(); 00152 if (!pImage) 00153 return false; 00154 00155 ImageProcessor::CopyImage(pImage, ppImages[1]); 00156 } 00157 00158 return true; 00159 }