Operators
Visualization
Image Processing
Terminology
Programming
100
This is the result of an operation where the operands totaled up to form a sum
What is the addition operator
100
These two terms hold everything when the program is run.
What are Frames and Objects.
100
This is what all digital images are made of.
What are pixels
100
Interger, Float, Boolean and String are examples of this term
What is a Type
100
This is the programming language used this term
What is Python
200
This is the result of an operation where the result is the quotient in which the digits after the decimal point is removed.
What is the Floor Division operator
200
This term shows the binding between the variable and its value
What is an arrow
200
This is the software created by Professor Donald Bailey in image processing
What is Cimpl
200
This term is a result of an expression where the variable is tied to a value
What is an assignment binding
200
"a = 2" a in this expression is an example of this term in programming
What is a variable
300
This is the result of an operation where the result is what is left over from the operation.
What is the Modulus operator
300
This term also creates its own frame and object just like variables.
What is a function
300
These terms are used to make any colour combination in the digital world of image processing
What are red, green and blue
300
Def area_of_rectangle(height, width): is an example of this term
What is a Function
300
# in Python is the example of this term with is very useful in programming
What is a comment.
400
This is a check to see if the operands are the same.
What is the Equal comparison operator
400
This term is a smaller box of the original Frame.
What is a Function frame.
400
This manipulation returns an image where the pixel's colors are the opposite of the original value.
What is negativing an image.
400
This term is used to make decisions to determine whether to compute a block of code or not
What is an if statement
400
"def area_of_rectangle(height, width)" in this example height and width are examples of this term in programming
What are parameters.
500
These operators are used in addition with other operations to make conditions
What are the Boolean Operators
500
This term is the result of the value at the end of the sub frame but, before closing the sub frame.
What is the return value
500
This manipulation is used to return am image that is less distinct.
What is blurring an image.
500
This term iterates over each index of a collection.
What is a for loop
500
These are the three to remember when dealing with functions
What are the execution of the function definition, the call to the function and the execution of the function body.