Soru 25: The Fibonacci sequence is defined by the recurrence relation: Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1. Hence the first 12 terms…
Yazılım, Yapay Zeka, IOT, Mekatronik
Soru 25: The Fibonacci sequence is defined by the recurrence relation: Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1. Hence the first 12 terms…
Soru 24: A permutation is an ordered arrangement of objects. For example, 3124 is one possible permutation of the digits 1, 2, 3 and 4.…
Soru 22: Using names.txt (right click and ‘Save Link/Target As…’), a 46K text file containing over five-thousand first names, begin by sorting it into alphabetical order. Then…
Soru: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? ————————– 13195…
Soru: https://projecteuler.net/problem=2 Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first…
OepnCV ile kameradan görüntüyü alarak video olarak kaydetme örneği: import cv2 as cv kayit = cv.VideoCapture(1) # Codec tanımla fourcc = cv.VideoWriter_fourcc(*’XVID’) video = cv.VideoWriter(‘output.avi’,…
OpenCV ile kameradan görüntüyü okuyarak resim olarak kaydetme örneği: import cv2 as cv #kayit = cv.VideoCapture(0) #ikinci bir kamera varsa değer artırılır kayit = cv.VideoCapture(1)…
Kameradan görüntü alma (İkinci bir kamera varsa parametre arttırılır) import cv2 as cv #kayit = cv.VideoCapture(0) #ikinci bir kamera varsa değer artırılır kayit = cv.VideoCapture(1)…
OpenCV ile Videoyu kare kare okuma import cv2 as cv kayit = cv.VideoCapture(“kaynak/rat.avi”) while kayit.isOpened(): ret, frame = kayit.read() if not ret: print(“Video okunamadı…”) break…
Matplotlib ile resimleri göstermek için öncelikle matplotlib kütüphanesini kurmak gerekmektedir. Bunun için pip install matplotlib komutu kullanılabilir. from matplotlib import pyplot as plt import cv2…