2 Commits 09d3c87f22 ... bf52164596

Author SHA1 Message Date
  MaochengHu bf52164596 reset 2 years ago
  MaochengHu e8816940f9 fix the python environment path problem 2 years ago
2 changed files with 12 additions and 5 deletions
  1. 12 2
      .idea/workspace.xml
  2. 0 3
      src_code/src/object_detector_handler.py

+ 12 - 2
.idea/workspace.xml

@@ -3,6 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="e5041b5b-13f7-40ae-a9f1-04b16d6a93ad" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/src_code/src/object_detector_handler.py" beforeDir="false" afterPath="$PROJECT_DIR$/src_code/src/object_detector_handler.py" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -35,7 +36,7 @@
     <property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
     <property name="WebServerToolWindowFactoryState" value="true" />
     <property name="last_opened_file_path" value="$PROJECT_DIR$/src_code/model_zoo/yolov5_model_zoo" />
-    <property name="settings.editor.selected.configurable" value="com.jetbrains.python.configuration.PythonContentEntriesConfigurable" />
+    <property name="settings.editor.selected.configurable" value="configurable.group.editor" />
   </component>
   <component name="RecentsManager">
     <key name="CopyFile.RECENT_KEYS">
@@ -216,6 +217,8 @@
       <workItem from="1646616597837" duration="122000" />
       <workItem from="1646720875499" duration="1923000" />
       <workItem from="1647392635005" duration="77000" />
+      <workItem from="1647831717045" duration="589000" />
+      <workItem from="1647832379111" duration="4470000" />
     </task>
     <task id="LOCAL-00001" summary="first commit">
       <created>1646185575550</created>
@@ -245,7 +248,14 @@
       <option name="project" value="LOCAL" />
       <updated>1646721943494</updated>
     </task>
-    <option name="localTasksCounter" value="5" />
+    <task id="LOCAL-00005" summary="fix the python environment path problem">
+      <created>1647832010411</created>
+      <option name="number" value="00005" />
+      <option name="presentableId" value="LOCAL-00005" />
+      <option name="project" value="LOCAL" />
+      <updated>1647832010411</updated>
+    </task>
+    <option name="localTasksCounter" value="6" />
     <servers />
   </component>
   <component name="TypeScriptGeneratedFilesManager">

+ 0 - 3
src_code/src/object_detector_handler.py

@@ -62,10 +62,7 @@ class ObjectDetectionHandler(BasicModelHandler):
         - input_source: base64(image)
         - output_methods: parse prediction for formatting return prediction result
         """
-        logging.info("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ row_data"+str(row_data) )
-
         data = row_data[0]
-        logging.info("$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ data"+str(data) )
         input_data = data.get("data")
         assert input_data is not None, "get input_data(request info) is None"
         output_methods = eval(data.get("output_methods", []).decode(encoding='utf-8'))