This commit is contained in:
Ivan
2022-04-05 11:42:28 +03:00
commit 6dc0eb0fcf
5565 changed files with 1200500 additions and 0 deletions

View File

@@ -0,0 +1,136 @@
/* This file is part of the Pangolin Project.
* http://github.com/stevenlovegrove/Pangolin
*
* Copyright (c) 2011 Steven Lovegrove
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <pangolin/factory/factory_registry.h>
#include <pangolin/utils/file_utils.h>
#include <pangolin/video/drivers/pvn.h>
#include <pangolin/video/iostream_operators.h>
#include <iostream>
using namespace std;
namespace pangolin
{
PvnVideo::PvnVideo(const std::string& filename, bool realtime )
: frame_size_bytes(0), realtime(realtime), last_frame(TimeNow())
{
file.open( PathExpand(filename).c_str(), ios::binary );
if(!file.is_open() )
throw VideoException("Cannot open file - does not exist or bad permissions.");
ReadFileHeader();
}
PvnVideo::~PvnVideo()
{
}
void PvnVideo::ReadFileHeader()
{
string sfmt;
float framerate;
unsigned w, h;
file >> sfmt;
file >> w;
file >> h;
file >> framerate;
file.get();
if(file.bad() || !(w >0 && h >0) )
throw VideoException("Unable to read video header");
const PixelFormat fmt = PixelFormatFromString(sfmt);
StreamInfo strm0( fmt, w, h, (w*fmt.bpp) / 8, 0);
frame_size_bytes += strm0.Pitch() * strm0.Height();
// frame_interval = TimeFromSeconds( 1.0 / framerate);
streams.push_back(strm0);
}
void PvnVideo::Start()
{
}
void PvnVideo::Stop()
{
}
size_t PvnVideo::SizeBytes() const
{
return frame_size_bytes;
}
const std::vector<StreamInfo>& PvnVideo::Streams() const
{
return streams;
}
bool PvnVideo::GrabNext( unsigned char* image, bool /*wait*/ )
{
file.read((char*)image, frame_size_bytes);
const basetime next_frame = TimeAdd(last_frame, frame_interval);
if( realtime ) {
WaitUntil(next_frame);
}
last_frame = TimeNow();
return file.good();
}
bool PvnVideo::GrabNewest( unsigned char* image, bool wait )
{
return GrabNext(image,wait);
}
PANGOLIN_REGISTER_FACTORY(PvnVideo)
{
struct PvnVideoFactory final : public FactoryInterface<VideoInterface> {
std::unique_ptr<VideoInterface> Open(const Uri& uri) override {
const std::string path = PathExpand(uri.url);
if( !uri.scheme.compare("pvn") || FileType(uri.url) == ImageFileTypePvn ) {
const bool realtime = uri.Contains("realtime");
return std::unique_ptr<VideoInterface>(new PvnVideo(path.c_str(), realtime));
}
return std::unique_ptr<VideoInterface>();
}
};
auto factory = std::make_shared<PvnVideoFactory>();
FactoryRegistry<VideoInterface>::I().RegisterFactory(factory, 10, "pvn");
FactoryRegistry<VideoInterface>::I().RegisterFactory(factory, 10, "file");
}
}