This repository was archived by the owner on Aug 10, 2022. It is now read-only.
  
  
  - 
                Notifications
    
You must be signed in to change notification settings  - Fork 24
 
Added a barebones GUI file selector #21
          
     Open
      
      
            hilletc7
  wants to merge
  13
  commits into
  waldo-vision:main
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
hilletc7:main
  
      
      
   
  
    
  
  
  
 
  
      
    base: main
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Open
                    Changes from 7 commits
      Commits
    
    
            Show all changes
          
          
            13 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      3d83ea4
              
                Add files via upload
              
              
                hilletc7 69edda1
              
                Barebones GUI for lucasKanadeOpticalFlow.py
              
              
                hilletc7 eb7439a
              
                Added barebones GUI for lucasKanadeOpticalFlow.py
              
              
                hilletc7 0c8ffdc
              
                Delete lucasKanadeOpticalFlow.py
              
              
                hilletc7 15feafc
              
                updated order of package import
              
              
                hilletc7 76638d7
              
                added barebones GUI interface
              
              
                hilletc7 1f76fe5
              
                updated order of package import
              
              
                hilletc7 252a305
              
                Create readme.md
              
              
                hilletc7 79d6005
              
                Base files and video for yolov3
              
              
                hilletc7 50f68ab
              
                Added link for yolov3 model weights
              
              
                hilletc7 2aef7c9
              
                specified package imports for GUI implementation
              
              
                hilletc7 13f8df5
              
                Delete yolov3_testing directory
              
              
                hilletc7 b0965ee
              
                Merge branch 'waldo-vision:main' into main
              
              
                hilletc7 File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you import all and then this separately?
Can you not just use tkinter.filedialog? Do you even need the import *?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, sorry about that, I got lazy about my package imports.
All we need for the GUI file selector to work properly is:
from tkinter import (Tk, Button, filedialog)andfrom tkinter.messagebox import showinfo. I can update the code and generate and new pull request later today when I have some time if you're cool with that.Thanks for the review.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the importy's and should be good to go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good, I fixed the package imports. Everything should be set now.