VishalD1234 commited on
Commit
aa38c1f
·
verified ·
1 Parent(s): 38c5c9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -44
app.py CHANGED
@@ -109,50 +109,19 @@ def get_analysis_prompt(step_number, possible_reasons):
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
- Analyze the delay in the movement of the following objects from the provided manufacturing video:
114
-
115
- 1. **h_stock_left**: Identified by contours with the color **Green**.
116
- 2. **h_stock_right**: Identified by contours with the color **Pink**.
117
- 3. **compressor_metal**: Identified by contours with the color **Orange**.
118
- 4. **conveyor2**: Identified by contours with the color **Blue**.
119
- 5. **white_down_roller_left**: Identified by contours with the color **White**.
120
- 6. **conveyor1**: Identified by contours with the color **Brown**.
121
-
122
- ### Steps for Analysis:
123
- 1. **Contour Detection**: Extract the contours for each specified color.
124
- 2. **Movement Tracking**: Track the movement of each object across video frames and log timestamps where delays or anomalies occur.
125
- 3. **Delay Identification**: Identify and measure delays or inconsistencies in their expected movement patterns.
126
- 4. **Action Timeline**:
127
- - Provide timestamps where specific actions are required based on observed delays.
128
- - Suggest actions to resolve delays based on identified reasons and visual evidence.
129
-
130
- ### Additional Observations:
131
- - If no person is visible in any frames, the delay reason might be due to their absence.
132
- - If a person is visible and is observed interacting with the tire layers, it could indicate an issue requiring patching or adjustments.
133
-
134
- ### Analysis Framework:
135
- Analyze the frames and contours for objects such as:
136
- - **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**.
137
-
138
- Compare the observed evidence against the possible delay reasons. Select the most likely reason based on visual cues.
139
-
140
- ### Provide Your Analysis in the Following Format:
141
- 1. **Selected Reason**: [State the most likely reason from the given options].
142
- 2. **Visual Evidence**: [Describe specific visual cues that support your selection].
143
- 3. **Reasoning**: [Explain why this reason best matches the observed evidence].
144
- 4. **Action Timeline**:
145
- - [Timestamp]: [Describe the action needed].
146
- - [Timestamp]: [Describe the next action needed].
147
- 5. **Alternative Analysis**: [Brief explanation of why other possible reasons are less likely].
148
-
149
- ### Important Notes:
150
- - Focus on precise and observable visual evidence from the video.
151
- - Provide time-based actionable insights to address detected delays.
152
- - Clearly state if no person or specific activity is observed.
153
- """
154
-
155
-
156
 
157
 
158
  # Load model globally
 
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
+ Please provide your analysis in the following format:
120
+ 1. Selected Reason: [State the most likely reason from the given options]
121
+ 2. Visual Evidence: [Describe specific visual cues that support your selection]
122
+ 3. Reasoning: [Explain why this reason best matches the observed evidence]
123
+ 4. Alternative Analysis: [Brief explanation of why other possible reasons are less likely]
124
+ 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."""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
 
126
 
127
  # Load model globally