#include <iostream>
#include <visp3/ustk_core/usConfig.h>
#if (defined(USTK_HAVE_QT5) || defined(USTK_HAVE_VTK_QT)) && \
(defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
#include <QApplication>
#include <QtCore/QStringList>
#include <QtCore/QThread>
#include <visp3/ustk_core/usMHDSequenceWriter.h>
#include <visp3/ustk_core/usRFToPreScan3DConverter.h>
#include <visp3/ustk_grabber/usNetworkGrabberRF3D.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/gui/vpDisplayX.h>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QString outputPath;
if (app.arguments().contains(QString("--output"))) {
outputPath = app.arguments().at(app.arguments().indexOf(QString("--output")) + 1);
}
if (!outputPath.isEmpty()) {
}
bool captureRunning = true;
std::cout << "init success" << std::endl;
std::cout << "waiting ultrasound initialisation..." << std::endl;
do {
grabbedVolume = qtGrabber->
acquire();
std::cout <<
"MAIN THREAD received volume No : " << grabbedVolume->
getVolumeCount() << std::endl;
converter.
convert(*grabbedVolume, preScanImage);
if (!outputPath.isEmpty())
} else {
vpTime::wait(10);
}
} while (captureRunning);
return app.exec();
}
#else
int main()
{
std::cout << "You should intall Qt5 (with wigdets and network modules), and display X to run this tutorial"
<< std::endl;
return 0;
}
#endif
Writer for a sequence of images stored as mhd/raw files in a directory Image filenames are set based ...
void setSequenceDirectory(const std::string sequenceDirectory)
void write(const usImageRF2D< short int > &image, const uint64_t timestamp)
Specific class to grab RF volumes from the ultrasound station on the network.
usVolumeGrabbedInfo< usImageRF3D< short int > > * acquire()
bool isFirstFrameAvailable()
bool initAcquisition(const usNetworkGrabber::usInitHeaderSent &header)
void setIPAddress(const std::string &s_ip)
3D conversion from RF signal to pre-scan image
void convert(const usImageRF3D< short int > &rfImage, usImagePreScan3D< unsigned char > &preScanImage)
Class to store additionnal informations arriving on the network with ultrasound volumes grabbed,...
std::vector< uint64_t > getTimeStamps() const
quint32 getVolumeCount() const