Arama Sonuçları

  1. E

    DCT Image Compression Method

    function varargout = DCTCompressionMethod(varargin) % DCTCOMPRESSIONMETHOD MATLAB code for DCTCompressionMethod.fig % DCTCOMPRESSIONMETHOD, by itself, creates a new DCTCOMPRESSIONMETHOD or raises the existing % singleton*. % % H = DCTCOMPRESSIONMETHOD returns the handle to a new...
  2. E

    Classification using KNN

    clc;clear;close all;warning off all; load HOG_features % imaqreset; % vid = videoinput('winvideo', 1, 'YUY2_640x480'); % src = getselectedsource(vid); % vid.FramesPerTrigger = Inf; % vid.ReturnedColorspace = 'rgb'; % start(vid); % preview(vid); %% Get snapshot and process frame...
  3. E

    Feature Extraction using machine learning

    clc;clear;close all; group=[]; data=[]; count = 0; label = []; addr = genpath('.'); % generate current path addpath(addr); % add current folders to search paths folder=dir('.\dataset'); %% for mn=3:length(folder) address=strcat('.\dataset\',folder(mn).name)...
  4. E

    Text to Speech

    function wav = tts(txt,voice,pace,fs) %TTS text to speech. % TTS (TXT) synthesizes speech from string TXT, and speaks it. The audio % format is mono, 16 bit, 16k Hz by default. % % WAV = TTS(TXT) does not vocalize but output to the variable WAV. % % TTS(TXT,VOICE) uses the...
  5. E

    Gesture Control

    function varargout = Gesture_Control(varargin) % GESTURE_CONTROL MATLAB code for Gesture_Control.fig % GESTURE_CONTROL, by itself, creates a new GESTURE_CONTROL or raises the existing % singleton*. % % H = GESTURE_CONTROL returns the handle to a new GESTURE_CONTROL or the...
  6. E

    Face Expression Recognition

    function varargout = main_GUI(varargin) % MAIN_GUI MATLAB code for main_GUI.fig % MAIN_GUI, by itself, creates a new MAIN_GUI or raises the existing % singleton*. % % H = MAIN_GUI returns the handle to a new MAIN_GUI or the handle to % the existing singleton*. % %...
  7. E

    Eye Blink Detection - Testing

    clear;clc;close all; %% global blink_status; blink_status = 0; load EyeDatabase LeftEyeDetector = vision.CascadeObjectDetector('LeftEyeCART'); imaqreset vid = videoinput('winvideo', 1, 'MJPG_640x480'); src = getselectedsource(vid); vid.FramesPerTrigger = Inf; start(vid); preview(vid); %%...
  8. E

    Eye Blink Detection - Training

    clear;clc;close all; fea=[]; group=[]; dos('attrib -h -r -s /S .\trainset\Thumbs.db'); dos('del /S .\trainset\Thumbs.db'); folder=dir('.\trainset'); count=0; LeftEyeDetector = vision.CascadeObjectDetector('LeftEyeCART'); %% for mn=3:length(folder) count=count+1...
  9. E

    Driver Sleep Alert System - Matlab

    function varargout = Driver_Sleep_Alert_System(varargin) % DRIVER_SLEEP_ALERT_SYSTEM MATLAB code for Driver_Sleep_Alert_System.fig % DRIVER_SLEEP_ALERT_SYSTEM, by itself, creates a new DRIVER_SLEEP_ALERT_SYSTEM or raises the existing % singleton*. % % H = DRIVER_SLEEP_ALERT_SYSTEM...
  10. E

    Bank Locker Security System - Matlab

    function varargout = main_GUI(varargin) % MAIN_GUI MATLAB code for main_GUI.fig % MAIN_GUI, by itself, creates a new MAIN_GUI or raises the existing % singleton*. % % H = MAIN_GUI returns the handle to a new MAIN_GUI or the handle to % the existing singleton*. % %...
  11. E

    Diabetic Retinopathy Detection - Preprocessing Dataset

    Deep Learning - Convolution Neural network - Programming in python, its off topic from Game hacking.
  12. E

    Diabetic Retinopathy Detection - Preprocessing Dataset

    """Resize and crop images to square, save as tiff.""" from __future__ import division, print_function import os from multiprocessing.pool import Pool import click import numpy as np from PIL import Image, ImageFilter import data N_PROC = 2 def convert(fname, crop_size): img =...
  13. E

    Diabetic Retinopathy Detection - GUI based Python code - main.py

    import copy import os import pickle import sys from itertools import chain from subprocess import call import cv2 import keras # from skimage import feature # import matplotlib import matplotlib.pyplot as plt import numpy as np from keras import backend as K from keras.layers.core import Dense...
  14. E

    Diabetic Retinopathy Detection - GUI based Python code - gui.py

    # -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'gui.ui' # # Created by: PyQt5 UI code generator 5.9.2 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog)...
  15. E

    Diabetic Retinopathy Detection - GUI based Python code - gui.ui

    <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>Dialog</class> <widget class="QDialog" name="Dialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>1252</width> <height>682</height> </rect> </property> <property name="windowTitle">...
  16. E

    Diabetic Retinopathy Detection - Training History

    Microsoft Windows [Version 10.0.18362.30] (c) 2019 Microsoft Corporation. All rights reserved. E:\PROJECTS\PYTHON\Diabetic_Retinopathy_Detection\Deep_Learning\Code_FINAL\MobileNet_based\code>C:/Users/Prashant/Anaconda3/Scripts/activate (base)...
  17. E

    Diabetic Retinopathy Detection - Python code - Prediction_with_Probabilities

    import numpy as np import keras from keras import backend as K from keras.layers.core import Dense, Dropout from keras.optimizers import Adam from keras.preprocessing.image import ImageDataGenerator from keras.models import Model from keras.callbacks import ReduceLROnPlateau, ModelCheckpoint...
  18. E

    Diabetic Retinopathy Detection - Python code - model_training

    # Import the libraries import numpy as np import keras from keras import backend as K from keras.layers.core import Dense, Dropout from keras.optimizers import Adam from keras.preprocessing.image import ImageDataGenerator from keras.models import Model from keras.callbacks import...
  19. E

    Diabetic Retinopathy Detection - Python code - Preprocessing

    # Import the libraries import pandas as pd import numpy as np from keras.preprocessing.image import ImageDataGenerator import os from sklearn.model_selection import train_test_split import shutil # Create a new directory for the images base_dir = 'base_dir' os.mkdir(base_dir) # Training file...
Üst