-
Notifications
You must be signed in to change notification settings - Fork 1
/
IPMV_SAMPLE_QUES.txt
1000 lines (81 loc) · 20.6 KB
/
IPMV_SAMPLE_QUES.txt
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Question Statement - mandatory (statement delivered to the candidate) Choice 1 - mandatory Choice 2 - mandatory Choice 3 Choice 4 Choice 5
What is the first and foremost step in Image Processing? Image restoration Image enhancement Image acquisition Segmentation
Which of the following step deals with tools for extracting image components those are useful in the representation and description of shape? Segmentation Representation & description Compression Morphological processing
"In which step of the processing, assigning a label (e.g., “vehicle”) to an object based on its descriptors is done?" Object recognition Morphological processing Segmentation Representation & description
What role does the segmentation play in image processing? Deals with extracting attributes that result in some quantitative information of interest "Deals with techniques for reducing the storage required saving an image, or the bandwidth required transmitting it" Deals with partitioning an image into its constituent parts or objects Deals with property in which images are subdivided successively into smaller regions
Digital images are displayed as a discrete set of frequencies intensities numbers digits
"Assume that an image f(x, y) is sampled so that the result has M rows and N columns. If the values of the coordinates at the origin are (x, y) = (0, 0), then the notation (0, 1) is used to signify :" Second sample along first row First sample along second row First sample along first row Second sample along second row
Black and white pixels of binary image are represented in matrix as 0 and -1 0 and 1 0 and 2 1 and 2
The dynamic range of pixels of grayscale image is in the range: 0 and -1 0 and 256 0 and 255 1 and 255
What do you mean by the term pixel depth? It is the number of bits used to represent each pixel in RGB space It is the number of bytes used to represent each pixel in RGB space It is the number of units used to represent each pixel in RGB space It is the number of mm used to represent each pixel in RGB space
How many bit RGB color image is represented by full-color image? 32-bit RGB color image 24-bit RGB color image 16-bit RGB color image 8-bit RGB color image
What is the name of area of the triangle in C.I E chromatic diagram that shows a typical range of colors produced by RGB monitors? Color gamut Tricolor Color game Chromatic colors
The subtractive color models use the concept of Printing ink Light to display color Printing line None of the answers
Color apparent in additive model are the result of Reflected light Transmission of light Flow of light None of the answers
The intersection of primary CMYK color produces White color Magenta color Cyan color Black color
CMYK true color model has _______ color depth 24bit 64bit 32bit None of the answers
The RGB model display a much _______ percentage of the visible band as compared to CMYK Lesser Larger Medium None of the answers
RGB model are used for Computer display Printing Painting None of the answers
"In 4-neighbours of a pixel p, how far are each of the neighbours located from p?" one pixel apart four pixels apart alternating pixels None of the answers
"The distance between pixels p and q, the pixels have a distance less than or equal to some value of radius r, form a square centred at (x,y) is called :" Euclidean distance Chessboard distance City-Block distance None of the answers
A geometry consisting of in-line arrangement of sensors for image acquisition A photodiode Sensor strips Sensor arrays CMOS
The transition between continuous values of the image function and its digital equivalent is called ______________ Quantisation Sampling Rasterisation None of the answers
"The distance between pixels p and q, the pixels have a distance less than or equal to some value of radius r, form a diamond centred at (x,y) is called :" Euclidean distance Chessboard distance City-Block distance None of the answers
Color apparent in subtractive model are the result of Amount of Reflected light Transmission of light Flow of light None of the answers
"Using gray-level transformation, the basic function power-law deals with which of the following transformation?" log and inverse-log transformations negative and identity transformations nth and nth root transformations None of the answers
The difference is intensity between the highest and the lowest intensity levels in an image is ___________ Noise Saturation Contrast Brightness
"Using gray-level transformation, the basic function linearity deals with which of the following transformation?" log and inverse-log transformations negative and identity transformations nth and nth root transformations None of the answers
The intersection of primary RGB color produces White color Magenta color Cyan color Black color
Changing overall sensitivity of image is called brightness brightness adaption illumination illumination adaption
"The power-law transformation is given as: s = cr^?, c and ? (gamma) are positive constants, and r is the gray-level of image before processing and s after processing. Then, for what value of c and ? (gamma) does power-law transformation becomes identity transformation?" c = 1 and ? (gamma) < 1 c = 1 and ? (gamma)> 1 c = -1 and ? (gamma) = 0 c = ? (gamma) = 1
"In MxN 2D image, M is no of" colors columns rows intensity levels
"In MxN 2D image, N is no of" colors columns rows intensity levels
Each element of 2D matrix representation of digital image is called coordinates pels or picture elements dots value
"When is the contrast stretching transformation a thresholding function, for r and s as gray-value of image before and after processing respectively?" r1 = s1 and r2 = s2 "r1 = r2, s1 = 0 and s2 = L – 1, L is the max gray value allowed" r1 = 1 and r2 = 0 None of the answers
Cornea is tough transparent tissues that covers eye's retina lashes anterior exterior
Imaging system produces digitized image analog signal high resolution image voltage signal
Digitizing coordinate values is called illuminance quantization radiance sampling
Smallest element of an image is called coordinate digits dot pixel
DPI stands for diameter per inches dots per image dots per inches dots per intensity
Digitizing amplitude values is called illuminance quantization radiance sampling
Luminance is measured in chromens degree lumens steradian
Image sensor produces Easy audio current waveform discrete signals voltage waveform
Digitizing image requires Easy sampling quantization reflection Both sampling and quantization
Digital image processing is build on mathematical and Easy additional formulations probabilistic addition probabilistic formulations probabilistic subtraction
Innermost membrane of eye is Easy cornea eyelid retina sclera
Brightness of light is a subject Easy defined descriptor matter oriented
Black level in binary image is represented by formula Easy [ƒ(x) = 0] "[ƒ(x,y) = 0]" "[ƒ(x,y) = 1]" [ƒ(y) = 0]
"In digital image g(x,y) x, y are the" Easy frequency variables intensity variables spatial variables None of the answers
Intensity can be converted to color transformation by assigning colors to Easy coordinates intensity levels pixel depth pixels
Intensity transformation is modeled using Easy "g(x,y) = [ƒ(x,y)]" "g(x,y) = T[ƒ(x)]" "g(x,y) = T[ƒ(x,y)]" "g(x,y) = T[ƒ(y)]"
Correction of power law response is called Easy alpha correction beta correction gamma correction pixel correction
Color Model used in TV Broadcasting and DVD players Easy CMYK HIS YIQ RGB
Gamma correction is mostly used in Easy audio devices CRT devices radio turbines
In bit plane slicing 8 bit image will have Easy 3 planes 7 planes 8 planes 4 planes
Inverse of nth root function in image processing is Easy identity inverse log log nth power
Color Model used in newspaper and magazine ink printing Easy CMYK HIS YIQ RGB
Adding black pigment to a color in HIS color model produces_____of that color. Easy gray values shades tints tones
Adding white pigment to a color in HIS color model produces_____of that color. Easy gray values shades tints tones
Adding both white and black pigment to a color in HIS color model produces_____of that color. Easy gray values shades tints tones
Digital video is sequence of Easy coordinates frames matrix pixels
MRI in imaging stands for Easy magnetic resistance imaging magnetic resonance imaging magnetic resonance intensity major resonance imaging
The input and output of image processing are? Easy signal and image signal only image only depends on input
Which of the following studies various techniques to classify patterns? Easy Image Processing Photogrammetry image recognition Pattern Recognition
Which of the following is an Applications of Computer Vision? Easy robotics medicines security All of the above
Which of the following is not an Image filters used in OpenCV? Easy Box Filter Bilateral Filter Blue Blur Build Pyramid
Low-level vision includes process image for feature extraction. Easy Yes No Can be yes or no can not say
Mach Band Effect is an optical illusion Easy TRUE FALSE Can be yes or no can not say
Computer vision is concerned with modeling and replicating human vision using computer software and hardware. Easy TRUE FALSE Can be yes or no can not say
"Computer vision is a discipline that studies how to reconstruct, interrupt and understand a 3d scene from its ________." Easy 1D IMAGES2D IMAGES 2D IMAGES 3D IMAGES 4D IMAGES
Computer vision is divided into _________ basic categories Easy 1 2 3 4
Which vision includes object recognition and 3D scene Interpretation? Easy Low-level vision Intermediate-level vision High-level vision All of the above
Median filter technique is the best way to denoise this image Easy TRUE FALSE Can be yes or no can not say
"To blur an image, you can use a linear filter" Easy TRUE FALSE Can be yes or no can not say
Which of the following is a challenge when dealing with computer vision problems? Easy "Variations due to geometric changes (like pose, scale etc)" "Variations due to photometric factors (like illumination, appearance etc)" Image occlusion All of the above
"Finite difference filters in image processing are very susceptible to noise. To cope up with this, which of the following methods can you use so that there would be minimal distortions by noise?" Easy Downsample the image Convert the image to grayscale from RGB Smooth the image None of the above
"Consider and image with width and height as 100×100. Each pixel in the image can have a color from Grayscale, i.e. values. How much space would this image require for storing?" Easy 25600000 " 25,60,000" 256000 800000
Quantizing an image will reduce the amount of memory required for storage. Easy TRUE FALSE Can be yes or no can not say
"Suppose we have a grayscale image, with most of the values of pixels being same. What can we use to compress the size of image?" Easy Encode the pixels with same values in a dictionary Encode the sequence of values of pixels No compression can be done can not say
JPEG is a lossy image compression technique Easy TRUE FALSE Can be yes or no can not say
"Given an image with only 2 pixels and 3 possible values for each pixel, what is the number of possible image histograms that can be formed?" Easy 3 6 9 12
"Suppose we have a 1D image with values as [2, 5, 8, 5, 2], Now we apply average filter on this image of size 3. What would be the value of the last second pixel?" Easy The value would remain the same The value would increase by 2 The value would decrease by 2 None of the above