TA MODUL 12 (VERSI 1)

TA MODUL 12 (VERSI 1)

University

10 Qs

quiz-placeholder

Similar activities

Blener Basic

Blener Basic

University

15 Qs

SOAL QUIZ WEBINAR SERIES #2 (TEKNOLOGI LIDAR UNTUK SURVEY DA

SOAL QUIZ WEBINAR SERIES #2 (TEKNOLOGI LIDAR UNTUK SURVEY DA

University - Professional Development

10 Qs

[P-2] PreTest PCD

[P-2] PreTest PCD

University

5 Qs

Monitörler

Monitörler

University

11 Qs

CSS Rules Quiz-unit 4 CodeHS

CSS Rules Quiz-unit 4 CodeHS

7th Grade - University

7 Qs

PCD 1a

PCD 1a

University

8 Qs

PCD UT

PCD UT

University

15 Qs

UTS PCD

UTS PCD

University

10 Qs

TA MODUL 12 (VERSI 1)

TA MODUL 12 (VERSI 1)

Assessment

Quiz

Computers

University

Medium

Created by

Ibes Ibes

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Bagaimana cara yang benar untuk membaca citra menggunakan OpenCV?

   ```

   img = cv.____('image.jpg')

   ```

read

imread

load

import

Answer explanation

cv.imread() adalah fungsi dasar untuk membaca citra dalam OpenCV.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Untuk deteksi tepi Sobel, sumbu x direpresentasikan oleh parameter:

   ```

   cv.Sobel(img, cv.CV_64F, ____, 0)

   ```

0

1

2

3

Answer explanation

dx=1 menunjukkan turunan pertama pada arah x.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Bagaimana cara mengubah citra ke grayscale?

   ```

   gray = cv.______(img, cv.COLOR_BGR2GRAY)

   ```

toGray

cvtColor

grayscale

convert

Answer explanation

cv.cvtColor() digunakan untuk mengubah ruang warna citra.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Perhatikan kode berikut:

   ```

   edges = cv.Canny(img, ____, 200)

   ```

   Nilai threshold pertama yang umum digunakan adalah:

50

100

150

250

Answer explanation

100 adalah nilai threshold bawah yang umum untuk Canny edge detection.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Bagaimana cara menyimpan citra menggunakan OpenCV?

    ```

    cv.____('output.jpg', img)

    ```

save

imwrite

write

export

Answer explanation

cv.imwrite() menyimpan citra ke file.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa fungsi dari cv.getStructuringElement()?

Membuat kernel untuk morfologi

Membuat histogram

Membuat filter

Membuat mask

Answer explanation

getStructuringElement() membuat kernel untuk operasi morfologi.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa fungsi dari cv.bitwise_and()?

Operasi AND piksel

Operasi OR piksel

Operasi XOR piksel

Operasi NOT piksel

Answer explanation

bitwise_and() melakukan operasi AND per piksel.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?