- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我以前在C语言中使用OpenCV,但现在决定给MATLAB一个机会。我是 MATLAB 的新手,从一开始我就遇到了问题:
我读了图片:
X=dicomread('medicalimage.dcm')
但是当我使用 imshow(X) 显示图像时,显示的图像与我上传的图像不一样,即使我没有对图像进行任何更改。这是什么原因?两幅图像之间存在非常明显的对比度差异,而且我似乎丢失了原始图像中的一些细节。
我在我的 Ubuntu 12.04 系统上使用 MATLAB R2010b。
Filename: 'x.dcm'
FileModDate: '06-Nov-2006 09:49:26'
FileSize: 526966
Format: 'DICOM'
FormatVersion: 3
Width: 512
Height: 512
BitDepth: 12
ColorType: 'grayscale'
FileMetaInformationGroupLength: 202
FileMetaInformationVersion: [2x1 uint8]
MediaStorageSOPClassUID: '1.2.840.10008.5.1.4.1.1.2'
MediaStorageSOPInstanceUID: '1.3.12.2.1107.5.1.4.54693.30000006100507010800000005302'
TransferSyntaxUID: '1.2.840.10008.1.2.1'
ImplementationClassUID: '1.3.6.1.4.1.19291.2.1'
ImplementationVersionName: 'OSIRIX001'
SourceApplicationEntityTitle: 'OSIRIX'
SpecificCharacterSet: 'ISO_IR 100'
ImageType: 'ORIGINAL\PRIMARY\AXIAL\CT_SOM5 SPI'
SOPClassUID: '1.2.840.10008.5.1.4.1.1.2'
SOPInstanceUID: '1.3.12.2.1107.5.1.4.54693.30000006100507010800000005302'
StudyDate: '20061005'
SeriesDate: '20061005'
AcquisitionDate: '20061005'
ContentDate: '20061005'
StudyTime: '101556.921000'
SeriesTime: '102051.046000'
AcquisitionTime: '101818.126639'
ContentTime: '101818.126639'
AccessionNumber: '0'
Modality: 'CT'
Manufacturer: 'SIEMENS'
InstitutionName: 'hY9'
InstitutionAddress: ''
ReferringPhysicianName: [1x1 struct]
StationName: 'CT54693'
StudyDescription: 'Extrémités inférieures^Pied_cheville_UHR (Adulte)'
ProcedureCodeSequence: [1x1 struct]
SeriesDescription: 'Pied/cheville 1.0mm std'
PerformingPhysicianName: [1x1 struct]
OperatorName: [1x1 struct]
ManufacturerModelName: 'Sensation 64'
ReferencedStudySequence: [1x1 struct]
ReferencedImageSequence: [1x1 struct]
SourceImageSequence: [1x1 struct]
PatientName: [1x1 struct]
PatientID: 'vAD7q3'
PatientBirthDate: ''
PatientSex: ''
PatientAge: '000Y'
BodyPartExamined: 'EXTREMITY'
SliceThickness: 1
KVP: 120
DataCollectionDiameter: 500
DeviceSerialNumber: '54693'
SoftwareVersion: 'syngo CT 2006A'
ProtocolName: 'Pied_cheville_UHR'
ReconstructionDiameter: 206
DistanceSourceToDetector: 1040
DistanceSourceToPatient: 570
GantryDetectorTilt: 0
TableHeight: 95
RotationDirection: 'CW'
ExposureTime: 1000
XrayTubeCurrent: 110
Exposure: 122
FilterType: '0'
GeneratorPower: 17
FocalSpot: 0.7000
DateOfLastCalibration: '20061005'
TimeOfLastCalibration: '073350.000000'
ConvolutionKernel: 'U30u'
PatientPosition: 'FFS'
StudyInstanceUID: '2.16.840.1.113669.632.20.1211.10000315526'
SeriesInstanceUID: '1.3.12.2.1107.5.1.4.54693.30000006100507010800000005268'
StudyID: 'A10025547593'
SeriesNumber: 5
AcquisitionNumber: 3
InstanceNumber: 34
ImagePositionPatient: [3x1 double]
ImageOrientationPatient: [6x1 double]
FrameOfReferenceUID: '1.3.12.2.1107.5.1.4.54693.30000006100506302075000001028'
SliceLocation: 58
ImageComments: 'JPEG 2000 lossless - Version 4.0.2 (c) Image Devices GmbH'
SamplesPerPixel: 1
PhotometricInterpretation: 'MONOCHROME2'
Rows: 512
Columns: 512
PixelSpacing: [2x1 double]
BitsAllocated: 16
BitsStored: 12
HighBit: 11
PixelRepresentation: 1
SmallestImagePixelValue: 0
LargestImagePixelValue: 2583
WindowCenter: [2x1 double]
WindowWidth: [2x1 double]
RescaleIntercept: -1024
RescaleSlope: 1
WindowCenterWidthExplanation: 'WINDOW1\WINDOW2'
RequestingService: 'Service d'orthopédie pédiatri'
RequestedProcedureDescription: 'CT pied-cheville'
RequestedProcedureCodeSequence: [1x1 struct]
RequestAttributesSequence: [1x1 struct]
左边是imshow的输出,右边是原图:http://img23.imageshack.us/img23/3166/differencem.png?http://imageshack.us/
imshow(X,[0 255]) 的结果:http://img248.imageshack.us/img248/4140/difference2.png?http://imageshack.us/
链接到我的 DCM 图片:http://www.speedyshare.com/7enTP/x.dcm.zip
最佳答案
如果您的 DICOM 数据包含颜色图,那么您也应该使用 dicomread
的第二个输出将其导入,并使用 imshow
的第二个参数将其应用于图像。示例:
[X, map] = dicomread('US-PAL-8-10x-echo.dcm');
imshow(X(:,:,1,1),map)
关于matlab - imshow 不显示相同的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12783276/
是 if(a == 0 && b == 0 && c == 0) { return; } 一样 if(a == 0) { return; } if(b == 0) { return; } if(c =
我想做这样的事情: Class A Class B extends A Class C extends A B b = new B(); C c = new C(); b->setField("foo
我对 Mysql 世界很天真......:)我试图使用连接从表中查询, 我遇到结果集问题...表结构如下 下面... VIDEO_XXXXX | Field | Type
我最近问过关于从另一个类获取类的唯一实例的问题。 ( How to get specific instance of class from another class in Java? ) 所以,我正
假设我们有两种类型 using t1 = int*; using t2 = int*; 我知道 std::is_same::value会给我们true .什么是,或者是否有模板工具可以实现以下目标?
对于我的一个应用程序,我假设比较 2 个字符串的第一个字符比比较整个字符串是否相等要快。例如,如果我知道只有 2 个可能的字符串(在一组 n 字符串中)可以以相同的字母开头(比如说 'q'),如果是这
我想在我的NXP LPC11U37H主板(ARM Cortex-M0)上分析一些算法,因为我想知道执行特定算法需要多少个时钟周期。 我编写了这些简单的宏来进行一些分析: #define START_C
我在 Excel 中创建了一个宏,它将在 Excel 中复制一个表格,并将行除以我确定的特定数字(默认 = 500 行),并为宏创建的每个部门打开不同的工作表。 使用的代码是这样的: Sub Copy
我想根据第一个字典对第二个字典的值求和。如果我有字典 A 和 B。 A = {"Mark": ["a", "b", "c", "d"], "June": ["e", "a"], "John": ["a
当我这样做时 system()在 Perl 中调用,我通常根据 perldocs 检查返回码.嗯,我是这么想的。大部分时间 $rc!=0对我来说已经足够了。最近我在这里帮助了两个遇到问题的人syste
在我的进度条上,我试图让它检测 div 加载速度。 如果 div 加载速度很快,我想要实现的目标将很快达到 100%。但进度条的加载速度应该与 div 的加载速度一样快。 问题:如何让我的进度条加载
当我获得与本地时间相同的时间戳时,firebase 生成的服务器时间戳是否会自动转换为本地时间,或者我错过了什么? _firestore.collection("9213903123").docume
根据the original OWL definition of OWL DL ,我们不能为类和个体赋予相同的名称(这是 OWL DL 和 OWL Full 之间的明显区别)。 "Punning" i
我有两个输入复选框: 尝试使用 jQuery 来允许两个输入的行为相同。如果选中第一个复选框,则选中第二个复选框。如果未检查第 1 个,则不会检查第 2 个。反之亦然。 我有代码: $('inpu
可以从不同系统编译两个相同的java文件,但它们都有相同的内容操作系统(Windows 7),会生成不同的.class文件(大小)? 最佳答案 是的,您可以检查是否有不同版本的JDK(Java Dev
我正在清理另一个人的正则表达式,他们目前所有的都以结尾 .*$ 那么下面的不是完全一样吗? .* 最佳答案 .*将尽可能匹配,但默认情况下为 .不匹配换行符。如果您要匹配的文本有换行符并且您处于 MU
我使用 Pick ,但是如何编写可以选择多个字段的通用PickMulti呢? interface MyInterface { a: number, b: number, c: number
我有一个 SQL 数据库服务器和 2 个具有相同结构和数据的数据库。我在 2 个数据库中运行相同的 sql 查询,其中一个需要更长的时间,而另一个在不到 50% 的时间内完成。他们都有不同的执行计划。
我需要你的帮助,我有一个包含两列的表,一个 id 和 numpos,我希望 id 和 numops 具有相同的结果。 例子: $cnx = mysql_connect( "localhost", "r
如何将相同的列(在本例中按“级别”排序)放在一起?我正在做一个高分,我从我的数据库中按级别列出它们。如果他们处于同一级别,我希望他们具有相同的 ID。 但是我不想在别人身上显示ID。只有第一个。这是一
我是一名优秀的程序员,十分优秀!