VishalD1234 commited on
Commit
a4cd45d
·
verified ·
1 Parent(s): a483265

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +48 -17
app.py CHANGED
@@ -107,23 +107,54 @@ def predict(prompt, video_data, temperature, model, tokenizer):
107
  def get_analysis_prompt(step_number, possible_reasons):
108
  """Constructs the prompt for analyzing delay reasons based on the selected step."""
109
  return f"""You are an AI expert system specialized in analyzing manufacturing processes and identifying production delays in tire manufacturing. Your role is to accurately classify delay reasons based on visual evidence from production line footage.
110
- Task Context:
111
- You are analyzing video footage from Step {step_number} of a tire manufacturing process where a delay has been detected. Your task is to determine the most likely cause of the delay from the following possible reasons:
112
- {', '.join(possible_reasons)}
113
- Required Analysis:
114
- Carefully observe the video for visual cues indicating production interruption.
115
- If no person is visible in any of the frames, the reason probably might be due to his absence.
116
- If a person is visible in the video and is observed touching and modifying the layers of the tire, it means there is a issue with tyre being patched hence he is repairing it.
117
- Compare observed evidence against each possible delay reason.
118
- Select the most likely reason based on visual evidence.
119
- Also give time duration of each video.
120
- Please provide your analysis in the following format:
121
- 1. Selected Reason: [State the most likely reason from the given options]
122
- 2. Visual Evidence: [Describe specific visual cues that support your selection]
123
- 3. Reasoning: [Explain why this reason best matches the observed evidence]
124
- 4. Alternative Analysis: [Brief explanation of why other possible reasons are less likely]
125
- Important: Base your analysis solely on visual evidence from the video. Focus on concrete, observable details rather than assumptions. Clearly state if no person or specific activity is observed."""
126
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
 
128
 
129
 
 
107
  def get_analysis_prompt(step_number, possible_reasons):
108
  """Constructs the prompt for analyzing delay reasons based on the selected step."""
109
  return f"""You are an AI expert system specialized in analyzing manufacturing processes and identifying production delays in tire manufacturing. Your role is to accurately classify delay reasons based on visual evidence from production line footage.
110
+ Task Context:
111
+ You are analyzing video footage from Step {step_number} of a tire manufacturing process where a delay has been detected. Your task is to determine the most likely cause of the delay from the following possible reasons:
112
+ {', '.join(possible_reasons)}
113
+ ### Task Context:
114
+ You are analyzing video footage from a specific step in the tire manufacturing process where a delay has been detected. Your task is to determine the most likely cause of the delay from the following possible reasons, while tracking the timeline of events to suggest actions that need to be taken at specific points.
115
+
116
+ ### Required Analysis:
117
+ Analyze the delay in the movement of the following objects from the provided manufacturing video:
118
+
119
+ 1. **h_stock_left**: Identified by contours with the color **Green**.
120
+ 2. **h_stock_right**: Identified by contours with the color **Pink**.
121
+ 3. **compressor_metal**: Identified by contours with the color **Orange**.
122
+ 4. **conveyor2**: Identified by contours with the color **Blue**.
123
+ 5. **white_down_roller_left**: Identified by contours with the color **White**.
124
+ 6. **conveyor1**: Identified by contours with the color **Brown**.
125
+
126
+ ### Steps for Analysis:
127
+ 1. **Contour Detection**: Extract the contours for each specified color.
128
+ 2. **Movement Tracking**: Track the movement of each object across video frames and log timestamps where delays or anomalies occur.
129
+ 3. **Delay Identification**: Identify and measure delays or inconsistencies in their expected movement patterns.
130
+ 4. **Action Timeline**:
131
+ - Provide timestamps where specific actions are required based on observed delays.
132
+ - Suggest actions to resolve delays based on identified reasons and visual evidence.
133
+
134
+ ### Additional Observations:
135
+ - If no person is visible in any frames, the delay reason might be due to their absence.
136
+ - If a person is visible and is observed interacting with the tire layers, it could indicate an issue requiring patching or adjustments.
137
+
138
+ ### Analysis Framework:
139
+ Analyze the frames and contours for objects such as:
140
+ - **h_stock_left**, **h_stock_right**, **conveyor1**, **conveyor2**, **compressor_metal**, **person**, **orange_roller_metal_left**, **orange_roller_metal_right**, **white_down_roller_left**, **white_down_roller_right**, and **vaccum_blue**.
141
+
142
+ Compare the observed evidence against the possible delay reasons. Select the most likely reason based on visual cues.
143
+
144
+ ### Provide Your Analysis in the Following Format:
145
+ 1. **Selected Reason**: [State the most likely reason from the given options].
146
+ 2. **Visual Evidence**: [Describe specific visual cues that support your selection].
147
+ 3. **Reasoning**: [Explain why this reason best matches the observed evidence].
148
+ 4. **Action Timeline**:
149
+ - [Timestamp]: [Describe the action needed].
150
+ - [Timestamp]: [Describe the next action needed].
151
+ 5. **Alternative Analysis**: [Brief explanation of why other possible reasons are less likely].
152
+
153
+ ### Important Notes:
154
+ - Focus on precise and observable visual evidence from the video.
155
+ - Provide time-based actionable insights to address detected delays.
156
+ - Clearly state if no person or specific activity is observed.
157
+ """
158
 
159
 
160