-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusImageRF2DSample.cpp
53 lines (49 loc) · 1.73 KB
/
usImageRF2DSample.cpp
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
/****************************************************************************
*
* This file is part of the UsTk software.
* Copyright (C) 2014 by Inria. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License ("GPL") as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* See the file COPYING at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact the
* authors at [email protected]
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
*
* Authors:
* Marc Pouliquen
*
*****************************************************************************/
#include <visp3/ustk_core/usImageRF2D.h>
#include <visp3/core/vpImage.h>
int main()
{
// 2D RF image settings
unsigned int RFSampleNumber = 200;
double transducerRadius = 0.007;
double scanLinePitch = 0.0006;
unsigned int scanLineNumber = 256;
bool isTransducerConvex = true;
double axialResolution = 0.002;
vpImage<unsigned char> I(RFSampleNumber, scanLineNumber);
usImageRF2D<unsigned char> rf2d;
rf2d.setTransducerRadius(transducerRadius);
rf2d.setScanLinePitch(scanLinePitch);
rf2d.setScanLineNumber(scanLineNumber);
rf2d.setTransducerConvexity(isTransducerConvex);
rf2d.setAxialResolution(axialResolution);
}