数字图像处理(双语)期中考试试卷答案

合集下载

数字图像处理题库(87道)

数字图像处理题库(87道)

数字图像处理1、in the hardware peripherals of image processing, which of the following equipments does not belong to the input devices?——[单选题]A Electron cameraB CCD video cameraC Desktop image scannerD Light tape正确答案:D2、The number of bits required to store an 1024*512 image of 4 gray levels is ( )——[单选题]A 256KB 512KC 1MD 2M正确答案:C3、An image of size 1024 × 1024 pixels in which the intensity of each pixel is an8 bit quantity requires the storage space ( if not compressed).——[单选题]A 1 KBB 1 MBC 2 KBD 2 MB正确答案:B4、Intensity range of 8-bit pixel image is () .——[单选题]A 0 to 7B 0 to 15C 0 to 31D 0 to 255正确答案:D5、By its very nature, the appearance of false contours in image is because ( )——[单选题]A the number of gray levels of the image is not enoughB the spatial resolution of the image is not high enoughC the number of gray levels of the image is excessiveD the spatial resolution of the image is too enough正确答案:A6、In the process of image sampling and quantization, the appearance of checkboard effect is because ( )——[单选题]A the number of gray levels of the image is not enoughB the spatial resolution of the image is not high enoughC the number of gray levels of the image is excessiveD the spatial resolution of the image is too enough正确答案:B7、When you enter a dark room on a bright day, it takes some time to see well enough, this is the visual process or visual phenomenon of——[单选题]A Brightness adaptationB Brightness discriminationC Optical illusionD Simultaneous contrast正确答案:A8、Sampling of an image is required for ().——[单选题]A QuantizationB SharpeningC SmoothingD Digitization正确答案:D9、An image function f(x,y) is characterized by f(x,y)=i(x,y)r(x,y) where.——[单选题]A 0<i(x,y)<1&0<r(x,y)<∞B 0<i(x,y)<1&0<r(x,y)<1C 0<i(x,y)<∞&0<r(x,y)<∞D 0<i(x,y)<∞&0<r(x,y)<1正确答案:D10、A pixel p at coordinates (x,y) has four horizontal and vertical neighbours whose coordinates are given by.——[单选题]A (x-1,y-1),(x-1,y),(x,y-1),(x,y+1)B (x+1,y),(x-1,y),(x,y+1),(x,y-1)C (x+1,y-1),(x-1,y),(x-1,y+1),(x,y+1)D (x+1,y-1),(x-1,y),(x,y+1),(x-1,y+1)正确答案:B11、The D4 distance (city distance) between p and q with coordinates (x,y), (s,t) is defined as.——[单选题]ABCD正确答案:A12、Mach bands effect——[单选题]A can be analyzed using simutaneous contrastB depends on the brightness adaptive level of human visual systemC indicates the same fact as simutaneous contrastD indicates that the actual brightness distributions of the bands are influenced by the subjective brightness curve正确答案:C13、The lens focuses light from objects onto the——[单选题]A corneaB retinaC scleraD iris正确答案:B14、The spatial resolution of an image is determined by how ( ) was carried out.——[单选题]A QuantizationB SharpeningC SmoothingD Sampling正确答案:D15、In the human visual system, the perceived intensity of a region is related to the light intensities of the regions surrounding it, this is called ( ).——[单选题]A brightness adaptationB simultaneous contrastC brightness discriminationD optical illusions正确答案:B16、The colours of an object that we perceive are determined by the nature of( ).——[单选题]A the light reflected from the objectB the light shone onto the objectC the light absorbed by the objectD the external light正确答案:A17、The human visual system can perceive approximately different light intensity levelsHowever, at any one time we can only discriminate between a much smaller number,this is indicated in the phenomenon called ( ).——[单选题]A Brightness adaptationB Brightness discriminationC Optical illusionD Simultaneous contrast正确答案:A18、Suppose there is a pixel p at coordinates (x,y), it's diagonal neighbor has four pixels, whose coordinates are given by ( ).——[单选题]A (x-1,y-1),(x-1,y),(x,y-1),(x,y+1)B (x-1,y-1),(x+1,y-1),(x-1,y+1),(x+1,y+1)C (x+1,y-1),(x-1,y),(x-1,y+1),(x,y+1)D (x+1,y-1),(x-1,y),(x,y+1),(x-1,y+1)正确答案:B19、The distance (chessboard distance) between p and q with coordinates (x,y), (s,t) is defined as. ——[单选题]ABCD20、In Matlab, which command can we use to dispaly an image?——[单选题]A imreadB imshowC imhistD imwrite正确答案:B21、In matlab, suppose x=[1 2 3 4;5 6 7 8;9 10 11 12],after run the commandx(:,[2,3])=[];what is the size of x?——[单选题]A 1*4B 3*2C 3*4D 3*3正确答案:B22、In matlab command window, if we run the followong command,what is the result shown in the command window?X=[1 2 3 4;5 6 7 8;9 10 11 12];X(5)——[单选题]A 5B 6C 0D 10正确答案:B23、In Matlab,Suppose x is a 1*6 array,which command can delete the fifth element of x?——[单选题]A delete x(5)B delete x(4)C x(5)=[]D x(4)=[]正确答案:C24、In MATLAB,what is the result of the expression 3~=4?——[单选题]A 1B 0C 7D 1225、In matlab, the command "clear" is used to ( )——[单选题]A Shows the variable in the workspaceB Deletes all variables in the workspaceC clean the command windowD clean the figure window正确答案:B26、In MATLAB,what is the result of x after run the command x=1:2:10?——[单选题]A 1 2 3 4 5 6 7 8 9 10B 1 3 5 7 9 11C 1 3 5 7 9D 2 4 6 8 10正确答案:C27、if x=2.6 ,what is the result of round(x), floor(x), ceil(x) and fix(x)?——[单选题]A 2,2,3,2B 3,2,3,2C 3,2,3,3D 2,2,3,3正确答案:B28、In MATLAB,what is the result of the expression 3==3?——[单选题]A 1B 0C 7D 12正确答案:A29、if x=-2.6 ,what is the result of round(x), floor(x), ceil(x) and fix(x)?——[单选题]A -2,-3,-2,-2B -3,-3,-2,-2C -3,-3,-2,-3D -2,-3,-2,-330、In matlab, the command "save" is used to ( )——[单选题]A Shows the variable in the workspaceB Saves all variables in the workspace to diskC clean the command windowD clean the figure window正确答案:B31、In MATLAB,what is the result of x after run the command x=10:-2:1?——[单选题]A 10 9 8 7 6 5 4 3 2 1B 10 8 6 4 2 0C 10 8 6 4 2D 2 4 6 8 10正确答案:C32、In Matlab, which command can we use to read an image?——[单选题]A imshowB imreadC imhistD imwrite正确答案:B33、In MATLAB, what is the result of a(5) after run these two commands?A=[1 2 3 4];A(6)=6;——[单选题]A 6B 5C 4D 0正确答案:D34、In Matlab,Suppose x is a 2*3 array,which command can delete the 5th elementof x?——[单选题]A delete x(5)B delete x(4)C x(4)=[]D x(5)=[]35、In matlab, suppose x=[1 2 3 4;5 6 7 8;9 10 11 12],after run the commandx([1,3],:)=[];what is the size of x?——[单选题]A 3*2B 1*4C 3*4D 3*3正确答案:B36、In matlab,suppose x is a 3*4 matrix,after run the following command,what is the size of x?X=[1 2 3 4;5 6 7 8;9 10 11 12];Y=x(2,2:4);X=[x,y'];——[单选题]A 3*4B 4*3C 3*5D 5*3正确答案:C37、in Matlab,if we want to display four images in the same figure window as the layout shown in the following,which command do we need to use to display an image in the area 2?——[单选题]A subplot(1,4,2)B subplot(4,1,2)C subplot(2,2,2)D subplot(2,2,3)正确答案:C38、In matlab, suppose x=[1 2 3 4;5 6 7 8;9 10 11 12],after run the commandx=[x;13 14 15 16];what is the size of x?——[单选题]A 3*5B 4*4C 3*4D 3*3正确答案:B39、In Matlab,Suppose x is a 1*6 array,which command can add 3 elements to x?——[单选题]A add x(7:9)B add x(3)C x(9)=10D x(9)=[]正确答案:C40、The corresponding relations between an image and its gray histogram is ( )——[单选题]A one to oneB many-to-oneC one-to-manyD all false正确答案:B41、There is a light ring on the dark background of a gray level image, can be used to make the ring thinner.——[单选题]A Median filterB Max filterC Min filterD Midpoint filter正确答案:C42、In the following four operators, which one belongs to the secondderivative? .——[单选题]A SobelB RobertsC PrewittD Laplacian正确答案:D43、When powerlaw transformation is used to as grayscale transformation,Which type of images as follows can be the transformationPerformed on for enhancement if the power is over 1?——[单选题]A Overall image intensities are on the dark sideB Overall image intensities are on the bright sideC Image details are hidden in the dark backgroundD Images have both too bright and too dark background正确答案:B44、( )can be applied for motion detection.——[单选题]A additionB substactionC multiplicationD division正确答案:B45、In the following four filters, which one belongs to a linear filter?——[单选题]A Median filterB Averaging filterC Max filterD Min filter正确答案:B46、The purpose of compressing dynamic range of image graylevles can be achieved with the help of logarithmic transformation , because ( )——[单选题]A graylevels dynamic range before transformation is larger than that after transformationB only partial range of graylevel values ha been taken after transformationC the ranges of graylevel before and after the transformation are differentD logarithmic transformation curve is monotonically increasing curve正确答案:B47、Logarithmic transform is useful if we wish to enhance details in the ( ) areas of the image, but at the expense of details in the ( ) areas.——[单选题]A dark darkB dark brightC bright darkD bright bright正确答案:B48、The range of intensity change of certain scene image obtained from camera is called ( ),which is the range from the darkest to the brighest in an image.——[单选题]A gray levelB dynamic rangeC spatial resolutionD histogram正确答案:B49、The gray level of an overexposed (washed out) image focuses on ( ) range, while the gray level of an underexposed image focuses on ( ) range.——[单选题]A low-brightness ,low-brightnessB low-brightness ,high-brightnessC high-brightness ,low-brightnessD high-brightness ,high-brightness正确答案:C50、Geometric transformation of images does not change the pixel's( ),but change the pixel's( ).——[单选题]A positon, valueB value,positionC contrast,positionD position, contrast正确答案:B51、Corresponding to different scene contents, digital image can be generally divided into three types, they are ( )——[多选题]A binary imageB gray imageC index imageD color image正确答案:ABD52、Which of the following adjacencies can eliminate ambiguity of path between pixels ( )——[多选题]A 4-adjacencyB 8-adjacencyC m-adjacencyD mixed adjacency正确答案:CD53、Image digitization process consists of two steps——[多选题]A samplingB transformationC quantizationD scanning正确答案:AC54、The retina is covered with light receptors called——[多选题]A rodsB conesC foveaD lens正确答案:AB55、Image digitization process consists of two steps,sampling and quantization. These two steps determine the ( ) and ( ) of an image, respectively.——[多选题]A Spatial resolutionB ResolutionC Intensity level resolutionD Dynamic domain正确答案:AC56、(Single choice)Which adjacency between pixels is the sufficient condition of other types of adjacency ?——[多选题]A 4-adjacencyB 8-adjacencyC m-adjacencyD mixed adjacency正确答案:A57、Three commonly-used neighbors in image processing are( )——[多选题]A 4-neighborsB 8-neighborsC diagonal neighborsD mixed neighbors正确答案:ABC58、MATLAB variable names ( )——[多选题]A must begin with a letterB can contain any combination of letters, numbers and underscore (_C must be unique in the first 31 charactersD can begin with a number正确答案:ABC59、The commonly-used histogram processing methods include ( ) and ( ).——[多选题]A histogram equalizationB histogram adjustmentC histogram specificationD histogram transform正确答案:AC60、The following spatial filters belonged to non-linear filters are ( )——[多选题]A median filterB max filterC min filterD averaging filter正确答案:ABC61、The cone body is mainly located in the middle part of the retina,and is highly sensitive to color. ——[判断题]A 正确B 错误正确答案:A62、The total range of distinct intensity levels the eye can discriminate simultaneously is rather small when compared with the total adaptation range. ——[判断题]A 正确B 错误正确答案:A63、The colours that we perceive are determined by the nature of the light absorbed by an object. ——[判断题]A 正确B 错误64、If a command is followed by a semicolon (;), result of the computation is not shown on the command window.——[判断题]A 正确B 错误正确答案:A65、If a command is followed by a commas (,), result of the computation is not shown on the command window——[判断题]A 正确B 错误正确答案:B66、In command window of Matlab, Ellipsis (…) means continuing on the next line.——[判断题]A 正确B 错误正确答案:A67、MATLAB is case sensitive: “name”, “Name” and “NAME” are consider ed different variables——[判断题]A 正确B 错误正确答案:A68、In Matlab, a two-dimensional matrix is stored in memory in Column major order.——[判断题]A 正确B 错误正确答案:A69、In MATLAB relational operators ,false is represented by 0 and true is represented by 1 (non-zero).——[判断题]A 正确B 错误70、Suppose x is a 3*4 matrix, then a(2,3) is the 8th element of x when in memory.——[判断题]A 正确B 错误正确答案:A71、In Matlab, imshow funtuntion can display images on the screen.——[判断题]A 正确B 错误正确答案:A72、Break statement terminates the execution of a loop and passes the control to the next statement after the end of the loop.——[判断题]A 正确B 错误正确答案:A73、Continue statement terminates the current pass through the loop and returns control to the top of the loop.——[判断题]A 正确B 错误正确答案:A74、In Matlab, the command window can input commands and show the results. ——[判断题]A 正确B 错误正确答案:A75、In the binary image, each pixel value is represented by 1 bit, value 1 represents white and value 0 represents ( )——[填空题]正确答案:black76、Consider the image segment shown .Two pixels p and q are at the locations shown in the figure, please compute their Euclidean(),city-block ()andchessboard distances()respectively。

西安交大数字图像处理双语试题

西安交大数字图像处理双语试题
) An image is s degraded b by a Gaussia an blur who ose Fourier transform t H H(u,v) is a G Gaussian H (u, v ) e ( u v )/2 , 13. A
Sket tch the gray y level transformation fo for a gamma a transforma ation that wi ill produce t the image on n the right. mera capture es a 400x400 pixel imag ge of a black and white e soccer ball l on a gray b background. The 2. A digital cam ball is 30 cm in n diameter an nd is 3 m aw way from th he camera. T The camera has a field o of field of 90 9 degrees izontally and d vertically. . hori (a) W What is the diameter of f the ball in pixels, in th he image? (i) 3 pixels (ii) 10 pixels (ii i) 20 pixels (iii) 31 pixe els (iv) 63 p pixels (b) G Give the his stogram of t the image, a assuming tha at black, wh hite, and gra ay pixels hav ve the gray levels 0, 25 55, and 128, respec ctively. Assu ume that the ere are an eq qual number r of black an nd white pix xels on the b ball. g (table tenn nis) ball is 4 40 mm in diameter. How w far away must the pin ng-pong bal ll be, to be (c) A ping-pong exac ctly the sam me apparent size as the s soccer ball i in the image e? (i) 1 10 cm (ii) 0.4 m (iii) 0.7 75 m (iv) 1 m (v) 3 m era has an im mage resolu ution of 2000 x 2000 pix xels. The in ndividual sen nsor elemen nts are squar res 3. A CCD came mea asuring 10 x 10 um, wit th no spaces s between th hem. a. If f the camera a uses a lens s with focal length = 10 00 mm, wha at is the field d of view? b. A Assume the c camera is m mounted on a an airplane, pointing str raight down n at the grou und. What he eight should d the airplane fly, so that one pix xel in the ca amera corres sponds to on ne meter on n the ground d? 4. T The histogram m of a 100x x100 image with 3 bit p pixels is give en below.

数字图像处理期中试题库

数字图像处理期中试题库

8.打开测试图像文件夹中的“水表8bi。
9.打开测试图像文件夹中的“水表8bit.bmp”,单击“灰度切分”菜单,实现图像的灰度切分。
10.打开测试图像文件夹中的“椒盐噪声8bit.bmp”,单击“十字形中值滤波”菜单,实现图像的十字形中值滤波。
5.打开测试图像文件夹中的“星球24bit.bmp”,单击“24bit直方图信息保存”菜单,将图像的直方图信息保存在相同文件夹下,文件名为“planhist.txt”,以R、G、B的顺序依次存放,256个直方图数组信息每一个占16个字符空间,从0开始依次摆放,格式为
R:
0:4352 1:5463等
G:
0:4352 1:5463等
B:
0:4352 1:5463等。并用写字板打开验证。
6.打开测试图像文件夹中的“水表8bit.bmp”,单击“改变图像”菜单,在图像数组的相应位置改变数值,使得图像从左到右,从上到下居中出现一个20个像素宽的黑色十字架。
7.打开测试图像文件夹中的任意图像,单击“图像信息显示”菜单,将图像的信息“宽,高,文件大小、像素深度”显示到一个对话框中。
期中上机试题
1.打开测试图像文件夹中的任意图像,单击“画十字星”菜单,在图像中央画一个红色的十字星,要求线宽10个像素。
2.打开测试图像文件夹中的“水表8bit.bmp”,单击“部分另存为”菜单,将图像的片段(x,y范围都从100到200)另存在相同文件夹下,文件名为“mywater.bmp”。
3.打开测试图像文件夹中的“星球24bit.bmp”,单击“部分另存为”菜单,将图像的片段(x,y范围都从100到200)另存在相同文件夹下,文件名为“myplane.bmp”。
4.打开测试图像文件夹中的“水表8bit.bmp”,单击“8bit直方图信息保存”菜单,将图像的直方图信息保存在相同文件夹下,文件名为“waterhist.txt”,256个直方图数组信息每一个占16个字符空间,从0开始依次摆放,格式为0:4352 1:5463等。并用写字板打开验证。

(完整)数字图像处理考试卷以及答案

(完整)数字图像处理考试卷以及答案

数字图像处理一、填空题(每题1分,共15分)1、列举数字图像处理的三个应用领域 医学 、天文学 、 军事2、存储一幅大小为10241024⨯,256个灰度级的图像,需要 8M bit 。

3、亮度鉴别实验表明,韦伯比越大,则亮度鉴别能力越 差 。

4、直方图均衡化适用于增强直方图呈 尖峰 分布的图像。

5、依据图像的保真度,图像压缩可分为 无损压缩 和 有损压缩6、图像压缩是建立在图像存在 编码冗余 、 像素间冗余 、 心理视觉冗余 三种冗余基础上.7、对于彩色图像,通常用以区别颜色的特性是 色调 、 饱和度亮度 。

8、对于拉普拉斯算子运算过程中图像出现负值的情况,写出一种标定方法:min max min ((,))*255/()g x y g g g --二、选择题(每题2分,共20分)1、采用幂次变换进行灰度变换时,当幂次取大于1时,该变换是针对如下哪一类图像进行增强.( B )A 图像整体偏暗B 图像整体偏亮C 图像细节淹没在暗背景中D 图像同时存在过亮和过暗背景2、图像灰度方差说明了图像哪一个属性。

( B )A 平均灰度B 图像对比度C 图像整体亮度D 图像细节3、计算机显示器主要采用哪一种彩色模型( A )A 、RGB B 、CMY 或CMYKC 、HSID 、HSV4、采用模板[—1 1]T 主要检测( A )方向的边缘。

A.水平B.45° C 。

垂直 D.135°5、下列算法中属于图象锐化处理的是:( C )A.低通滤波B.加权平均法C.高通滤波D. 中值滤波6、维纳滤波器通常用于( C )A 、去噪B 、减小图像动态范围C 、复原图像D 、平滑图像7、彩色图像增强时, C 处理可以采用RGB 彩色模型。

A. 直方图均衡化B. 同态滤波C 。

加权均值滤波 D. 中值滤波8、__B__滤波器在对图像复原过程中需要计算噪声功率谱和图像功率谱.A 。

逆滤波B 。

维纳滤波 C. 约束最小二乘滤波 D 。

数字图像处理题库(含答案)

数字图像处理题库(含答案)

[题目]数字图像[参考答案]为了便于用计算机对图像进行处理,通过将二维连续(模拟)图像在空间上离散化,也即采样,并同时将二维连续图像的幅值等间隔地划分成多个等级(层次),也即均匀量化,以此来用二维数字阵列表示其中各个像素的空间位置和每个像素的灰度级数(灰度值)的图像形式称为数字图像。

图像处理[参考答案]是指对图像信息进行加工以满足人的视觉或应用需求的行为。

题目]数字图像处理[参考答案]是指利用计算机技术或其他数字技术,对一图像信息进行某此数学运算及各种加工处理,以改善图像的视觉效果和提高图像实用性的技术。

一、绪论(名词解释,易,3分)[题目]图像[参考答案]是指用各种观测系统以不同形式和手段观测客观世界而获得的、可以直接或间接作用于人的视觉系统而产生的视知觉的实体。

一、绪论(简答题,难,6分)[题目]什么是图像?如何区分数字图像和模拟图像?[参考答案]“图”是物体透射或反射光的分布,是客观存在的。

“像”是人的视觉系统对图在大脑中形成的印象或认识,是人的感觉。

图像是图和像的有机结合,既反映物体的客观存在,又体现人的心理因素;图像是对客观存在的物体的一种相似性的生动模仿或描述,或者说图像是客观对象的一种可视表示,它包含了被描述对象的有关信息。

模拟图像是空间坐标和亮度(或色彩)都连续变化的图像;数字图像是空间坐标和亮度(或色彩)均不连续的、用离散数字(一般是整数)表示的图像。

[题目]简述研究图像恢复的基本思路。

[参考答案]基本思路是,从图像退化的数学或概率模型出发,研究改进图像的外观,从而使恢复以后的图像尽可能地反映原始图像的本来面日,从而获得与景物真实面貌相像的图像。

一、绪论(简答题,易,5分)[题目]简述研究图像变换的基本思路。

[参考答案]基本思路是通过数学方法和图像变换算法对图像的某种变换,以便简化图像进一步处理的过程,或在进一步的图像处理中获得更好的处理效果。

一、绪论(简答题,易,5分)[题目]简述一个你所熟悉的图像处理的应用实例。

数字图像处理考试试题

数字图像处理考试试题

数字图像处理考试试题一、选择题(每题 3 分,共 30 分)1、以下哪个是数字图像处理的主要研究内容?()A 图像增强B 图像压缩C 图像分割D 以上都是2、图像数字化的过程不包括()A 采样B 量化C 编码D 滤波3、灰度直方图反映了图像中()A 灰度级的分布情况B 像素的分布情况C 图像的清晰度D 图像的对比度4、中值滤波的主要作用是()A 去除噪声B 增强边缘C 平滑图像D 锐化图像5、图像旋转后出现的空白区域通常采用()方法进行填充。

A 最近邻插值B 双线性插值C 均值插值D 零值填充6、以下哪种图像压缩算法是无损压缩?()A JPEGB MPEGC Huffman 编码D 小波变换7、在图像分割中,阈值分割法是基于图像的()特征。

A 灰度B 纹理C 形状D 颜色8、边缘检测算子中,对噪声比较敏感的是()A Roberts 算子B Sobel 算子C Prewitt 算子D Canny 算子9、图像的几何变换不包括()A 平移B 旋转C 缩放D 傅里叶变换10、以下哪个指标用于评价图像增强的效果?()A PSNRB MSEC SNRD 以上都是二、填空题(每题 3 分,共 30 分)1、数字图像可以用矩阵来表示,矩阵中的元素值对应图像的______。

2、图像的分辨率越高,包含的______越多。

3、图像锐化是为了增强图像的______。

4、常见的彩色模型有 RGB、HSV 和______。

5、图像平滑处理中,均值滤波的窗口越大,平滑效果越______,但同时也会导致图像细节丢失越多。

6、图像的傅里叶变换将图像从______域转换到______域。

7、基于区域的图像分割方法通常依据图像的______特性来划分区域。

8、图像压缩的目的是减少图像的______,以便于存储和传输。

9、形态学图像处理中的膨胀操作可以使图像中的目标______。

10、图像的对比度是指图像中______的差异程度。

三、简答题(每题 10 分,共 20 分)1、简述图像增强的目的和常用方法。

数字图像处理习题与答案

数字图像处理习题与答案

单选题1、图像在计算机中是如何表示的?A.f(x,y)B.f(x,y,z)C.2D图像用f(x,y),3D图像用f(x,y,z)D.0和1表示正确答案:C2、图像的数字化为什么会丢失信息?A.采样丢失数据B.量化丢失数据C•压缩编码丢失数据D.采样和编码丢失数据正确答案:D3、8位图像的灰阶范围是多少?A.0和1B.0-255C.0-256D.128正确答案:B4、下列哪一项不是二维图像的存储格式?A..bmpB..tifC..jpgD..dicom正确答案:D5、下列图像分类名称中,哪一项不是按图像传感器分类的?A.雷达图像B•近红外图像C•超声图像D•伪彩图像正确答案:D6、什么是伪彩图像?A.图像中每个像素点用RGB分量表示B.图像中每个像素点用RGB索引表示C.图像中每个像素点用HIS分量表示D.图像中每个像素点用0和1表示正确答案:B7、下列哪一项不属于医学图像的有哪些?A.MRI图像B.CT图像C•超声多普勒图像D•紫外图像正确答案:D8、下列有关不同模态的图像叙述正确的是?A.不同模态并不能呈现更多信息B.2D和3D结合没有意义C•临床上不同模态的结合需求很高D•不同模态没有太大必要正确答案:C9、下列哪一项是数字图像处理的基本流程?A•图像预处理-图像分割-图像识别-图像建模B•图像预处理-图像识别-图像分割-图像建模C•图像预处理-图像建模-图像分割-图像识别D•图像预处理-图像建模-图像识别-图像分割正确答案:A10、什么是模式识别?A•通过计算机用数学的方法来对不同模式进行自动处理和判读B•通过人工用数学的方法来对不同模式进行自动处理和判读C•通过计算机用数学的方法来对不同模式进行人工处理和判读D•通过人工用数学的方法来对不同模式进行人工处理和判读正确答案:A11、下列关于灰度直方图的描述不正确的是?A.灰度直方图与图像具有对应关系B.灰度直方图是一个分布函数C利用灰度直方图可以采集到更加优秀的凸显gD.灰度直方图的横轴表示灰阶,纵轴表示每个灰阶的像素数量正确答案:A12、下列哪一项不是灰度直方图的特点A.描述了处于不同灰阶的像素数量B•将图像翻转不影响灰度直方图C•描述了每个像素在图像中的位置D.将图像的一部分平移不会影响灰度直方图正确答案:C13、下列关于灰度直方图和图像面积叙述正确的是?A•图像面积越大,灰度直方图的Y轴越长B•图像面积越大,灰度直方图的X轴越长C.灰度直方图按横轴积分得到的值就是图像的面积D.图像的面积与图像的灰度直方图没有关系正确答案:C14、下列关于灰度直方图的双峰性叙述错误的是?A.灰度直方图的双峰可以对应于图像中的前景和背景B•两个峰值中间的部分可以理解为两个高斯信号叠加的结果C.根据双峰可以简单地找到最优二值化的值D■最优二值化处于两个峰值之间正确答案:C15、下列关于图像二值化叙述正确的是?A.二值化只能使用一个固定的阈值B.二值化后的图像有多个灰阶C.二值化后的图像只有两个灰阶D•存在对任何图像都通用并且稳定的二值化算法正确答案:C16、下列哪一个不是求取最优二值化值的算法?A.OtsualgorithmB.EntropyMethodC.ConjugateGradientMethodD.Isodataalgorithm正确答案:C17、下列二值化和灰度直方图的关系叙述错误的是?A•通常灰度直方图的双峰对应于图像的前景和背景区域B•通过灰度直方图可以知道二值化的最佳阈值C•灰度直方图对二值化有很好的指导意义D•二值化求最佳阈值的过程通常包含分析直方图的步骤正确答案:B18、下列关于Otsu算法中"类间方差(between-classesvariance)”的描述错误的是?A.类间方差达到最大的情况下即为最优二值化值B•类间方差达到最小的情况下即为最优二值化值C•类间方差有机结合了前景和背景信息,是评价信息量多少的一个评价函数D.类间方差是根据前景部分的方差和背景部分的方差计算得到的正确答案:B19、下面哪些效果无法通过卷积实现?A■降噪B■边缘检测C•平滑D•把灰度图像彩色化正确答案:D20、下列哪一项不属于图像卷积运算的过程A.卷积核中心依次覆盖在图像上的每一个像素点上进行运算B•将卷积核覆盖上图像做运算前,要先将卷积核旋转180度C•卷积运算每一个步骤得到的值要存储新开的内存中,不能直接在原图上进行修改D•将卷积核的值直接与其覆盖的像素灰度值相乘并累加作为卷积核中心当前覆盖点正确答案:D21、卷积运算中,下列一项处理图像边缘的像素点的方法是错误的?A•根据卷积核的大小,在图像边缘新增一圈像素点并根据图像边缘的像素进行插值B•在图像边缘进行卷积运算的时候,调整卷积核的大小C•根据卷积核的大小,忽略图像周围一圈的像素D•根据卷积核的大小,在图像周围先填充一圈纯黑或纯白然后进行卷积运算正确答案:B22、使用图像卷积操作的除噪方法不包括下列的哪一项?A•均值滤波B•高斯滤波C•开闭运算D•中值滤波正确答案:C23、下列哪个卷积核无法提取图像边缘?正确答案:A24、下列哪一项不是ITK的实现特点?A•使用模板编程实现,用户自由度高B■使用Cmake来配置和生产项目C•使用智能指针,自动删除废弃的对象D.仅支持Window平台正确答案:D25、下列关于VTK的描述错误的是?A.VTK的类库是按面向对象的思想设计的B.VTK具有跨平台的特性,支持多个操作系统平台C.VTK提供了丰富地计算机图像学和图像处理方面的功能D.VTK是用C++实现的,所以要使用VTK只能用C++来调用正确答案:D26、下列哪一项是欧拉距离的表达式A抠厂乳1『+(7厂鬥『B.B.应一心|+|叫—旳C.^|)正确答案:A27、形态学操作不能用来做下列哪一项图像处理的操作?A■除噪B■边缘检测C•形状分析D•图像配准正确答案:D28、下列关于结构化要素(SE)描述正确的是?A.结构化要素的尺寸不能超过3*3B•结构化要素与卷积核一样,原点只能在中心C•结构化要素记录了形态学操作中如何对图像进行平移D.结构化要素的不同对形态学操作的结果没有影响正确答案:C29、下列关于二值形态学算法叙述错误的是?A.通过开闭运算的结合可以出去图像中的椒盐噪声B•对图像进行重复的开操作会不断产生新的不同的结果C.二值形态学操作包括了二值膨胀、二值腐蚀以及开闭运算D•二值膨胀可以使图像的前景区域扩大正确答案:B30、下列关于二值形态学操作性质描述正确的是?A.二值形态学不满足平移不变性B.通过把一个大的结构化要素分解成较小的结构化要素分别做形态学操作可以有效地提高速度C.二值腐蚀满足交换律D•二值腐蚀和膨胀是可逆的正确答案:B31、下列关于"Hit-and-Miss”叙述不正确的是?A■通过Hit-and-Miss可以得到轮廓线B•通过改变SE可以检测出不同类型的图案C.Hit-and-Miss是基于形态学的一特定图案的检测器D.Hit-and-Miss无法检测孤立的点正确答案:D32、下列关于"PatternSpectrum”的叙述错误的是?A.PatternSpectrum可以区分图像中不同尺寸的图案B.PatternSpectrum可以区分图像中不同形状的图案C.PatternSpectrum不需要不断重复形态学操作D.PatternSpectrum在进行过程中需要变换SE正确答案:C33、在计算图像的"distancetransform"时,下列哪一项形态学操作需要重复进行?A•腐蚀B.闭操作C膨胀D.开操作正确答案:A34、下列关于图像的”distancetransform”与”skeleton”的关系描述正确的是?A.根据skeleton可以得到distancetransform的结果B■相同SE,distancetransform得到的结果中,所有邻域内的最大值点就是skeletonC.不同SE对二者的结果都是没有影响的D.skeleton与distancetransform是两个不同的概念,没有任何关系正确答案:B35、一个圆面图像的骨架是什么?A.圆心B.—组同心圆C•从圆心出发到圆边的射线D•—组螺旋线l E s n n w .3P A .M J S a s 凹m F M J S 焜左®一品逼 D .M J S 廡杲臨igsgKgg®*测js 37"T 画卅屮朋俞世s 廡杲w 讲(condEona-d=an on )S K ^II E S o .^i s s w s s s S E s 刀4幕并创x p 'r t d口》Lgzjp;沏、刖口》T4At&奏lE s n nw -a38"-F5=®—s ^l w a ^s l ^s ^a ^}画7A. RGBB. ODBCC. CMYKD. HISl E s n n w -b39,C. RGB 册画氏HIS 册画mi f f l D蛮輿鹦g b c v J S s遍礴D. H IS 册画l E s n n w -c40、下列关于HIS色彩空间的描述错误的是?A.通过调整图像的色相可以调整图像的色温B.通过调整图像的亮度可以调整图像的色温C.HIS色彩空间杜宇彩色图像的某些特定操作非常直观方便D•通过调整图像的饱和度来调整图像的对比度正确答案:B41、下面关于光学断层成像叙述错误的是?A.在对样本进行切片时可能会损坏样本的三维结构B.使用光学断层成像是三维成像的一种方式C•使用光学断层成像可以保留切片与切片之间的相关性D•光学断层成像是通过将样本进行切片来获取样本的三维信息正确答案:C42、以下四类方法的分割结果按可重复性(Reproducibility)从大到小排序正确的是:A•全自动分割,自动分割后手工修正,手工勾画大体轮廓后自动分割,纯手工分割B•全自动分割,手工勾画大体轮廓后自动分割,自动分割后手工修正,纯手工分割C•全自动分割,手工勾画大体轮廓后自动分割,纯手工分割,自动分割后手工修正D•纯手工分割,自动分割后手工修正,手工勾画大体轮廓后自动分割,全自动分割正确答案:B43、在DDC中,当轮廓进行形变后,需要对轮廓进行重采样(Resampling)的原因不包括:A.轮廓上每个控制点运动后,会产生控制点空间上疏密的变化B.控制点太稀疏不能有效地表示轮廓C.控制点太密会影响到整个运算过程的存储、速度D•需要通过重采样对轮廓进行平滑正确答案:D44、以DDC为例的可变形模型(Deformablemodel)的特点不正确的是:A.自动改变轮廓形状以匹配图像边界B.初始轮廓需要接近图像边界C.各个参数的选择会影响最终的结果D•高斯平滑参数越大分割结果越好正确答案:D45、可变形模型(Deformablemodel)的研究包括:A.定义不同的能量模型B•轮廓的表示方式,如不封闭的轮廓的描述C•整合分割目标的其他信息,如形状模型、灰度分布模型等D.其他三项均是正确答案:D46、关于水平集(Levelset)算法以下各项错误的是:A.通过增加一个维度后的零水平集来表示轮廓B•在水平集的演化过程中,只有在零水平集,即轮廓处才有速度C.在实际运用中,可以采用快速行进(Fastmarching)与水平集的组合,以提高运算速度同时保证最后结果的精确D•水平集算法可以分割三维的数据正确答案:B47、水平集相比于蛇形算法(snake)的好处不包括:A•可以容易地对多个目标进行分割B.可以容易地表示复杂的结构C•对初始轮廓的敏感性相对较小l E s n n w -口4°°B.跖画弱召s冈M商E Ei f f l昧商溜(Labe-)lE s n n w -d 49’UZTg 讲T w K s S K gg B 爺(regisq-anon )s w A. SK 淞S S D (fusion)B.S K g g w 莒(superimposition)c .s l ^s r a B (marching)D®®画§莒讲(sum )l E s n n w -口5FA •回—訓>洋幾2D 瓯弱山3DS K g g r a BB.回—訓>g 3P F回理弱d ^a腔s g l ®(合SPEC?画弱山MRI§)s g D c .>a血回一^訓>洋幾山8幾sCT 、將泪因®g l ®s s -)40.»8®®s i s K (Adds)S I l Esn n w -c5r F T g讲T R SS制凹龙B 爺 B.T 回訓>§洋幾«弱凹龙團爺0-D•术中影像和术前影像可以配准正确答案:C52、图像配准中不一定会用到的是A■图像插值(Interpolation)B■确定图像间的相似性测度(Similaritymetric)C■迭代进行最优化(Optimization)D•图像二值化正确答案:D53、以下衡量两幅图像相似性并使之达到最佳匹配的方式错误的是:A.最大化两幅图像间的互信息(Mutualinformation)B■最大化对应的特征点(Landmark)之间的平方距离(Squareddistance)之和C•最小化两个对应的面之间的距离测度D.最小化两幅图像间对应像素间灰度值的均方误差正确答案:B54、以下关于重采样(Resampling)的说法错误的是:A.上采样(Super-Sampling)后像素点数目增多B.通过对图像上采样可以获得比原图像更多的信息C■下采样(Sub-Sampling)后,每个像素点对应的实际空间范围增大D•下采样后,对图像进行显示,若保持每个像素大小不变,则显示出的图像比原图像变小正确答案:B55、以下关于线性配准(linearregistration)的说法不正确的是:A■刚体配准(rigidregistration)中图像的变换包括平移(translation)和旋转(rotation)B■仿射变换(affinetransformation)是线性变换C■常用的仿射变换包括平移(translation)、旋转(rotation)、缩放(scaling)和剪切(shear)D•线性配准等同于刚体配准正确答案:D56、关于非刚体配准下列说法错误的是:A.可以用薄板样条(Thinplatespline)描述非线性形变(Non-lineardeformation)B•三次b样条(CubicB-spline)可以用来描述非线性形变C•图像若干个局部发生刚体变换,整体来看发生的仍然是刚体变换D•非刚体形变的自由度要大于刚体形变正确答案:C57、以下关于两幅完全相同的图像间相似性测度(Similaritymetrics)的说法不正确的是:A.均方误差(Meansquarederror)理想值为0B.正规化的互相关(Normalizedcrosscorrelation)理想值为0C■理想的联合直方图(Jointhistogram)完全集中在对角线上D.正规化的互信息(Normalizedmutualinformation)理想值为2正确答案:B58、对于完全相同的两幅图像,将其中一幅图像的灰度值增加到原来的150%,则下列说法错误的是:A.正规化的互相关(Normalizedcrosscorrelation)理想值将小于1B.均方误差(Meansquarederror)理想值将大于0C•理想的联合直方图(Jointhistogram)完全集中在一条直线上,但不再是对角线D.正规化的互信息(Normalizedmutualinformation)理想值仍为2正确答案:A59、以下关于互信息(Mutualinformation)以及联合熵(Jointentropy)的叙述错误的是:A■联合熵的大小是对联合直方图(Jointhistogram)的分散程度的描述B•互信息具有对称性,即I(A,B)=I(B,A)C.互信息与联合熵是完全等价的描述D•当A,B之间相互独立时互信息为0,I(A,B)=0正确答案:C60、使用多解像度(multi-resolution)图像配准的原因不包括:A.加快配准速度B.图像的细节在配准中是完全没有用的C■增强配准鲁棒性(Robustness)D.避免陷入局部最优值正确答案:B。

《数字图像处理》习题参考答案

《数字图像处理》习题参考答案

1《数字图像处理》 习题参考答案第1章概述1.1连续图像和数字图像如何相互转换?答:数字图像将图像看成是许多大小相同、形状一致的像素组成。

这样,数字图像可以用二维矩阵表示。

将自然界的图像通过光学系统成像并由电子器件或系统转化为模拟图像 (连续图像)信号,再由模拟 /数字转化器(ADC )得到原始的数字图像信号。

图像的数字化包括离散和量化两个主要步骤。

在空间将连续坐标过程称为离散化,而进一步将图像的幅度值(可能是灰度或色彩)整数化的过程称为量化。

1.2采用数字图像处理有何优点?答:数字图像处理与光学等模拟方式相比具有以下鲜明的特点:1 •具有数字信号处理技术共有的特点。

(1)处理精度高。

(2)重现性能好。

(3)灵活性高。

2•数字图像处理后的图像是供人观察和评价的,也可能作为机器视觉的预处理结果。

3•数字图像处理技术适用面宽。

4 •数字图像处理技术综合性强。

1.3数字图像处理主要包括哪些研究内容?答:图像处理的任务是将客观世界的景象进行获取并转化为数字图像、进行增强、变换、编码、恢复、重建、编码和压缩、分割等处理,它将一幅图像转化为另一幅具有新的意义的 图像。

1.4讨论数字图像处理系统的组成。

列举你熟悉的图像处理系统并分析它们的组成和功能。

答:如图1.8,数字图像处理系统是应用计算机或专用数字设备对图像信息进行处理的 信息系统。

图像处理系统包括图像处理硬件和图像处理软件。

图像处理硬件主要由图像输入设备、图像运算处理设备(微计算机) 、图像存储器、图像输出设备等组成。

软件系统包括操作系统、控制软件及应用软件等。

1.5 常见的数字图像处理开发工具有哪些?各有什么特点?答.目前图像处理系统开发的主流工具为 Visual C++ (面向对象可视化集成工具)和 MATLAB 的图像t+W<住《l 塁希碎«IUIMEH 鼻爭■图1.8数字图像处理系统结构图处理工具箱(Image Processing Tool box )。

数字图像处理期中考试最终版本

数字图像处理期中考试最终版本
file.Write(pDoc->pBitMapInfo,sizeof(BITMAPINFOHEADER)+pDoc->ColorUsed *sizeof(RGBQUAD));
//读取图像灰度和大小
for(i=200;i<400;i++)
file.Write(&pDoc->pImage[i*pDoc->nWidth+200],200);
if (pDoc->BitCount==24)
{
file.Write(pDoc->pBitMapInfo,sizeof(BITMAPINFOHEADER));
}
if(pDoc->BitCount==8)
file.Write(pDoc->pBitMapInfo,sizeof(BITMAPINFOHEADER)+pDoc->ColorUsed *sizeof(RGBQUAD));
{
for(j = pDoc->BmpHeight / 2 - 5; j < pDoc->BmpHeight / 2 + 5; j ++)
{
pDoc->pImage[j * pDoc->nWidth + i] = 0;
}
}
for(i = pDoc->BmpHeight / 2 - 50; i < pDoc->BmpHeight / 2 + 50; i ++)
CFile file;
CFileDialog dlg(FALSE, "bmp", sFileName,

数字图像处理期中考试答案

数字图像处理期中考试答案
if(i%4==3)
{
sprintf(s,"\n");
fwrite(s,1,1,fp);
}
}
fclose(fp);
}
void CTeach_testView::On8bitChange()
{
CTeach_testDoc *pDoc=GetDocument();
int i,j;
for(i=0;i<10;i++)
fp=fopen("mywater.bmp","wb+");
BMpFHeader=pDoc->BitMapFileHeader;
BMpFHeader.bfSize=200*200+14+40+1024;
pBMapInfo=pDoc->pBitMapInfo->bmiHeader;
pBMapInfo.biWidth=200;
dc.LineTo(40+i,320-nHist[i]/20);
dc.SelectObject(oldpen);
}
for(i=0+256;i<=255+256;i++)
{
CPen pen(PS_SOLID,1,RGB(0,255,0));
CPen*oldpen =dc.SelectObject(&pen);
{
nHist[pDoc->pImage[i*pDoc->nWidth+j]]++;
}
}
for(i=0;i<256;i++)
{
sprintf(s,"%3d:%6d ",i,nHist[i]);

数字图像处理试卷及答案

数字图像处理试卷及答案
2、试设计一套算法来实现染色体(图像见下图)的统计与识别(给出算法思想即可)。
一大题:填空题(共 10 小题,每小空 1.5 分,共 30 分)
1、在人类接受的信息中,图像等视觉信息所占的比重约达到 %。
2、数字图像处理,即用
对图像进行处理。
3、图像处理技术主要包括图像的


等技术。
4、在计算机中,按颜色和灰度的多少可以将图像分为
像素的邻域 邻域是指一个像元(x,y)的邻近(周围)形成的像元集合。即{(x=p,y=q)}p、q 为 任意整数。 像素的四邻域
像素 p(x,y)的 4-邻域是:(x+1,y),(x-1,y) ,(x,y+1), (x,y-1) 三、简答题( 每小题 10 分,本题共 30 分 ): 1. 举例说明直方图均衡化的基本步骤。 直方图均衡化是通过灰度变换将一幅图象转换为另一幅具有均衡直方图,即在每个灰度级上 都具有相同的象素点数的过程。
的的技术. 2、8-连通的定义 -对于具有值 V 的像素 p 和 q ,如果 q 在集合 N8(p)中,则称这两个像素是 8-连通的。 3、 灰度直方图 灰度直方图是指反映一幅图像各灰度级像元出现的频率。 4、中值滤波 中值滤波是指将当前像元的窗口(或领域)中所有像元灰度由小到大进行排序,中间值作为 当前像元的输出值。



四种类型。
5、在计算机中,数字图像处理的实质是对
的处理。
6、图像数字化过程包括三个步骤:



7、在 RGB 彩色空间的原点上,三个基色均没有
,即原点为 色。
8、图像所有灰度级中处于中间的值叫做

9、模式识别包括

两方面的内容。

数字图像处理(双语)期中考试试卷答案

数字图像处理(双语)期中考试试卷答案

考试试卷(答案)试卷编号: ()卷课程编号:课程名称:数字图像处理(双语)考试形式:适用班级:姓名:学号:班级:学院: 信息工程学院专业:电子系各专业考试日期:一二三四五六七八九十总分累分人签名题分20 20 20 20 20 0 0 0 0 0 100得分考生注意事项:1、本试卷共5页,请查看试卷中是否有缺页或破损。

如有立即举手报告以便更换。

2、考试结束后,考生不得将试卷、答题纸和草稿纸带出考场。

一、基础知识填空题(1,2为单项选择,每空3分,3,4为多项选择,每空2分,共20分),1 1、When you enter a dark room on a bright day,it takes some time to see wellenough, this is the visual process or visual phenomenon ofA. (Brightness adaptation.)B. (Brightness discrimination。

)C。

(Optical illusion.)D。

(Simultaneous contrast。

)2、The visible spectrum consists of electromagnetic spectrum nearly in therange of wavelength:A。

(10 – 400 nm) B. (0.01 – 10 nm)C。

(400 – 700 nm) D. (700 – 1500nm)3、For V = {1},the subsets S1 and S2areA。

(m-connected) B。

(8-connected )C. (4-connected)D. (None of these 3)4、Two pixels p and q are at the locations shown in the figure,theirEuclidean,city-block and chessboard distances are respectively:A. D e= () B。

数字图像处理题库(含答案)

数字图像处理题库(含答案)

[题目]数字图像[参考答案]为了便于用计算机对图像进行处理,通过将二维连续(模拟)图像在空间上离散化,也即采样,并同时将二维连续图像的幅值等间隔地划分成多个等级(层次),也即均匀量化,以此来用二维数字阵列表示其中各个像素的空间位置和每个像素的灰度级数(灰度值)的图像形式称为数字图像。

图像处理[参考答案]是指对图像信息进行加工以满足人的视觉或应用需求的行为。

题目]数字图像处理[参考答案]是指利用计算机技术或其他数字技术,对一图像信息进行某此数学运算及各种加工处理,以改善图像的视觉效果和提高图像实用性的技术。

一、绪论(名词解释,易,3分)[题目]图像[参考答案]是指用各种观测系统以不同形式和手段观测客观世界而获得的、可以直接或间接作用于人的视觉系统而产生的视知觉的实体。

一、绪论(简答题,难,6分)[题目]什么是图像?如何区分数字图像和模拟图像?[参考答案]“图”是物体透射或反射光的分布,是客观存在的。

“像”是人的视觉系统对图在大脑中形成的印象或认识,是人的感觉。

图像是图和像的有机结合,既反映物体的客观存在,又体现人的心理因素;图像是对客观存在的物体的一种相似性的生动模仿或描述,或者说图像是客观对象的一种可视表示,它包含了被描述对象的有关信息。

模拟图像是空间坐标和亮度(或色彩)都连续变化的图像;数字图像是空间坐标和亮度(或色彩)均不连续的、用离散数字(一般是整数)表示的图像。

[题目]简述研究图像恢复的基本思路。

[参考答案]基本思路是,从图像退化的数学或概率模型出发,研究改进图像的外观,从而使恢复以后的图像尽可能地反映原始图像的本来面日,从而获得与景物真实面貌相像的图像。

一、绪论(简答题,易,5分)[题目]简述研究图像变换的基本思路。

[参考答案]基本思路是通过数学方法和图像变换算法对图像的某种变换,以便简化图像进一步处理的过程,或在进一步的图像处理中获得更好的处理效果。

一、绪论(简答题,易,5分)[题目]简述一个你所熟悉的图像处理的应用实例。

数字图像处理试卷及答案精选全文完整版

数字图像处理试卷及答案精选全文完整版

可编辑修改精选全文完整版《数字图像处理》模拟试卷(A 卷)一、单项选择题(从下列各题四个备选答案中选出一个正确答案,并将其代号填在题前的括号内。

答案选错或未作选择者,该题不得分。

每小题1分,共10分)( )1.一幅灰度级均匀分布的图象,其灰度范围在[0,255],则该图象的信息量为:a. 0b.255c.6d.8( )2.图象与灰度直方图间的对应关系是:a.一一对应b.多对一c.一对多d.都不对( )3.下列算法中属于局部处理的是:a.灰度线性变换b.二值化c.傅立叶变换d.中值滤波( )4.下列算法中属于点处理的是:a.梯度锐化b.二值化c.傅立叶变换d.中值滤波( ) 5.一曲线的方向链码为12345,则曲线的长度为a.5b.4c.5.83d.6.24( )6. 下列算法中属于图象平滑处理的是:a.梯度锐化b.直方图均衡c. 中值滤波placian增强( )7.下列图象边缘检测算子中抗噪性能最好的是:a.梯度算子b.Prewitt算子c.Roberts算子d. Laplacian算子( )8.采用模板[-1 1]主要检测____方向的边缘。

a.水平b.45°c.垂直d.135°( )9.二值图象中分支点的连接数为:a.0b.1c.2d.3( )10.对一幅100´100像元的图象,若每像元用8bit表示其灰度值,经霍夫曼编码后压缩图象的数据量为40000bit,则图象的压缩比为:a.2:1b.3:1c.4:1d.1:2二、填空题(每空1分,共15分)1.图像锐化除了在空间域进行外,也可在进行。

2.图像处理中常用的两种邻域是和。

3.直方图修正法包括和两种方法。

4.常用的灰度内插法有、和。

5.多年来建立了许多纹理分析法,这些方法大体可分为和结构分析法两大类。

6.低通滤波法是使受到抑制而让顺利通过,从而实现图像平滑。

7.检测边缘的Sobel算子对应的模板形式为和。

8.一般来说,采样间距越大,图象数据量,质量;反之亦然。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

考试试卷(答案)
试卷编号:( )卷课程编号:课程名称:数字图像处理(双语)考试形式:适用班级:姓名:学号:班级:
学院:信息工程学院专业:电子系各专业考试日期:
一二三四五六七八九十总分累分人
签名题分20 20 20 20 20 0 0 0 0 0 100
得分
考生注意事项:1、本试卷共5页,请查看试卷中是否有缺页或破损。

如有立即举手报告以便更换。

2、考试结束后,考生不得将试卷、答题纸和草稿纸带出考场。

一、基础知识填空题(1,2为单项选择,每空3分,3,4为多项选择,每空2分,共20分),
1 1、When you enter a dark room on a bright day, it takes some time to see well
enough, this is the visual process or visual phenomenon of
A. (Brightness adaptation.)
B. (Brightness discrimination.)
C. (Optical illusion.)
D. (Simultaneous contrast.)
2、The visible spectrum consists of electromagnetic spectrum nearly in the
range of wavelength:
A. (10 – 400 nm)
B. (0.01 – 10 nm)
C. (400 – 700 nm)
D. (700 – 1500 nm)
3、For V = {1}, the subsets S1 and S2are
A. (m-connected)
B. (8-connected )
C. (4-connected)
D. (None of these 3)
4、Two pixels p and q are at the locations shown in the figure, their Euclidean,
city-block and chessboard distances are respectively:
A. D e= ( )
B. D4 = ( 6 )
C. D8 = ( 4 ) 0 0 0 1 2
1 2 7 6 5(p)
得分评阅人
二、空域图像增强题1(Image enhancement in the spatial domain) (20分) Exponential of the form s = T (r ) = 2552
r e α-, 0 ≤ r ≤ 255, with α being a positive constant, are useful for constructing smooth gray-level transformation functions. (1) Start with this basic function and construct transformation functions having the shapes shown in the above figures. (15分) (2) What kind of transformation does the function of (a) approximately
complete for an input of a gray intensity image? (5分) (1) (a)
so
.
(b)
so
得分 评阅人
255 255
255 (b)
(a)
(c)
三、空域图像增强题2(Image enhancement in the spatial domain) (20分)
The White bars in the test pattern shown are 7 pixels wide and 210 pixels high. The separator between bars is 17 pixels. What would this image look like after application of
1. A 3×3 median filter?
2. A 7×7 median filter?
3. A 9×9 median filter?
4. A 15×15 median filter?
( Note: in your answer, quantitative analysis is expected. )
Answer:
The separator between bars is 17 pixels wide > 15, so none of the 4 filters can remove any black pixels. We can treat all black pixels as background.
1. Applying a 3×3 median filter removes the 1 pixel at the top left, top right, bottom left and bottom right locations of each bar, as shown in (a), which is an amplified corner of the filtered
image.
2. Applying a 7×7 median filter remove 6 pixels located at the top left, the top right, the bottom left, the bottom right of each bar, as shown in (b),which is an amplified corner of the median filtered image.
0111110 0001000 3×3 1111111 7×7 01111110 1111111 01111110
3. Applying a 9×9 median filter remove 10 pixels located at the top left, the top right, the bottom left, the bottom right of each bar, as shown in (c). which is an amplified corner of the median filtered image 0000000 9×9 0011100
0111110
4. This time all bars are disappeared.
得分 评阅人
(a)
(b)
(a)。

相关文档
最新文档