
Dr. Ofer Miller
Enthusiastic scientist with over 15 years of experience in research development and implementing cutting-edge technologies such as signal processing, and AI oriented for Computer Vision
מילר עופר של הרשמי האתר
• "Celia and Marcos Maus Annual Prize" in Computer Science for distinction in Ph.D research studies, May 2002• Excellent Ph.D students scholarship from the Council for Higher Education for high technology area, December 2000.• Tel-Aviv University Award for distinction in Master of Science studies, June 1999.• Tel-Aviv University Fellowship for Master of Science students, October 1998.


List of Patents
| Title | Author | Year | Patent#: |
|---|---|---|---|
| 1. "Determine Viewer's exposer to Visual Messages" | Ofer Miller | 2016 | 20170169464 |
| 2. "Method for logging a user in to a mobile device" | Ofer Miller | 2015 | 20150049922 |
| 3. Method for rating areas in video frames | Ofer Miller... | 2013 | 8457402 |
| 4. Method and Device for Processing Video Frames | Ofer Miller... | 2012 | 20120017238 |
| 5. System and Method for Enriching Video Data | Ofer Miller... | 2011 | 20110217022 |
| 6. Method for illumination independent change detection in a pair of registered gray images | Ofer Miller... | 2006 | 7088863 |
| 7. Automatic object extraction | Ofer Miller... | 2006 | 7085401 |

Videos from the research at TLV University
Illumination independent Object based Change Detection Article
Graph based Segmentation of Moving Objects while spatial and temporal information are available.
Color Image Segmentation Based on Adaptive Local Thresholds
Tracking of Moving Objects Based on Matching between Graph Edges
Some videos of the past work for Artimedia
Reminder : we are creating the AI using our accumulated knowledge over the history, the AI just uses the knowledge better and faster ......




NOTE: In much of my research, I rely on graph-based data structures and their associated algorithms including : breadth-first-search (BFS), depth-first-search (DFS), graph contraction, minimum spanning tree (MST), finding k shortest path between two vertices, to obtain efficient implementations. Thus, provides a set of related constructive algorithms for high-level processing that has linear, almost-linear and polynomial time complexity. Linear or almost linear time-complexity algorithms are proportional to the image size n. Thus , Its enables getting a polynomial time complexity for some algorithms when the complexity is proportional to number of arcs E in the image segmentation boundaries. Then the complexity becomes O(E x E) rather than O(N x N) and E<<N.
Is it possible to segment "correctly" with no prior information?
Color Image Segmentation Based on Adaptive Local Thresholds !!!!
An algorithm that integrates edges and region-based techniques while local information is considered. The local consideration enables to derive local thresholds adaptively such that any threshold is associated with a specific region represented by graph. The number of thresholds is automatically determined during the process, which is also automatically terminated
Here is the official publication Link of the above article.
What's happens when we have both saptio and temporal information
Graph based Segmentation of Moving Objects Based on Connectivity Analysis of Spatio-temporal information
Lets dive into a Segmentation algorithm for separating moving objects from the background in video sequences without any prior information of their nature !. I formulate the problem as a connectivity analysis of region adjacency graph (RAG) based on temporal information. By performing a watershed based algorithm I managed to segment the frame into a semantic homogeneous region. The boundary pixels in each region are compared with a series of consecutive frames in order to generate temporal information. The edges of the RAG will represents the temporal information. Each node represents a different homogeneous region. Analysis of the RAG's connectivity is achieved by performing a modification of the breadth-first-search (BFS) algorithm. After a sufficient number of comparisons each of the object's components is merged into a single segment which represents the moving object in the frame. The accuracy of the algorithm is proportional to the number of allowed comparisons.
Here is the official publication Link of the above article.
Identify changes between two gray images taken in extreme! different illumination, is it possible ?
The goal of such algorithm is to extract the objects that appear only in one of two registered images. A typical application is surveillance, where a scene is sampled at different time gap. Assumption of significant illumination difference between the two images is considered. For example, one image may be captured during daylight while the other image may be captured at night with infrared device. Now the secret for the solution here is by analyzing the connectivity along gray-levels, all the blobs that are candidates to be classified as ‘change’ are extracted from both images. Then, the candidate blobs from both images are analyzed. A Blob from one image that has no matched blob in the other image is considered as a ‘change’. The algorithm is reliable, fast, accurate, and robust even under significant changes in illumination. The worst-case time complexity of the algorithm is almost linear in the image size. Therefore, it is suitable for real-time applications.
Here is the publication Link of the above article.
So The above algorithms are also was considered to be the Most Cited paper !!!

Can we track after occluded objects in linear complexity ?
Yes !! , but for linear complexity, a graph based theory algorithm is required
The above Algorithm suggests a novel algorithm for tracking moving objects in video sequences. The proposed algorithm is contour-based. The region adjacency graph (RAG) that is obtained from the segmentation results of the input frame, is used to segment the object's contour into subcurves. Then, each connection between two subcurves is called an 'important' junction. The motion of the junctions is estimated in a search that is represented by the RAG edges in the consecutive frame. Each pair of matched junctions may be connected by several edge paths that are candidates to represent the tracked contour. The candidate paths are obtained by an algorithm that finds the k shortest paths between two nodes. It operates on an RAG that is transformed into a weighted and directed graph. Finally, a construction of the tracked contour is achieved by a match process between the object edges and the set of candidate paths.
Here is the publication Link of the above article.
If we understand how AI was really built, we can leverage its intelligent way way further than we can "think" !
Lets start with understanding of what is The K-means algorithm: so its an unsupervised machine learning algorithm used to group data points into k clusters based on their similarity, with each data point assigned to the cluster with the nearest centroid (cluster center). It works by iteratively assigning data points to clusters and then updating the centroids to the mean of the assigned points, repeating the process until no data points change cluster membership. K-means is useful for applications like customer segmentation and image analysis but requires the number of clusters (k) to be specified beforehand and is best at finding spherical clusters.
Wait , it still under construction soon to be continue............