Explain how Deep Learning Techniques are used for feature extraction?
See Answer →What do you understand by feature extraction? What are its applications? Also discuss few traditional methods of feature extraction
See Answer →Explain Image segmentation. Also discuss about its applications.
See Answer →What do you mean by Camera Calibration? Explain how intrinsic and extrinsic parameters of a camera are estimated?
See Answer →Perform a 600 rotation of a triangle ABC with coordinates A: (0, 0),B: (1,1),C: (5,2) about the origin.
See Answer →Consider the coordinates of warm white (0.55, 0.3) and the coordinates of deep blue (0.25, 0.15). Find the percentage of the three colours red (X), green (Y) and blue (Z).
See Answer →Discuss Mean and Median filters with suitable examples
See Answer →Explain image degradation and its types.
See Answer →What is a Doubly Linked List? How does it differ from Circularly Doubly Linked List?
See Answer →What is Heap Sort? What is Merge Sort? Write the factors on the basis of which Heap Sort or Merge Sort is selected.
See Answer →Explain the process of converting a Tree into a Binary Tree with an example.
See Answer →For the given 4x4 image having grey scales between [0, 9], carry out histogram equalization. Also, draw the histogram of image before and after equalization.
| 2 | 4 | 5 | 3 |
| 3 | 3 | 8 | 4 |
| 3 | 4 | 6 | 2 |
| 2 | 2 | 7 | 2 |
See Answer →
What are B-trees? Explain with example.
See Answer →Compute various bit planes of the following 8-bit image.
| 50 | 80 | 100 | 150 |
| 20 | 75 | 200 | 250 |
| 90 | 125 | 155 | 155 |
| 175 | 210 | 230 | 110 |
See Answer →
What does map( ) function do ? Write a program in Python to print the cube of the numbers present in the list, by using map( ) function.
See Answer →Write steps to create a package. Apply these steps to create a package named volume and create 3 modules in it named cube, cuboid and sphere, having function to calculate volume of the cube, cuboid and sphere respectively. Import the modules defined in the package and use the defined functions for calculation of volume respectively.
See Answer →What are Pandas ? Write steps to import, read and print a CSV file using Pandas. Also, transform your steps in to suitable code in Python.
See Answer →Discuss the connect( ) method of MySQL. Connector interface. List the arguments involved with connect( ) method. Write Python code to create database student_DB and to connect to student_DB (make suitable assumptions wherever necessary).
See Answer →Write an algorithm to find the HCF (Highest Common Factor) of the two numbers entered by a user. Transform your algorithm to a C program, support your program with suitable comments.
See Answer →Write an algorithm to find the slope of a line segment whose end point coordinates are (x1, y1) and (x2, y2). The algorithm gives output whether the slope is positive, negative or zero. Transform your algorithm to C program.
See Answer →