Compare commits

..

2 Commits

Author SHA1 Message Date
b60cbe3854 Merge pull request 'Add current homography operation' (#52) from loewy/add-current-homography-in-operation into master
Reviewed-on: #52
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
2024-09-06 19:04:35 -06:00
e0b150aa2a add current homography operation
All checks were successful
Tests / Tests (pull_request) Successful in 6s
2024-09-06 19:00:13 -06:00
2 changed files with 4 additions and 4 deletions

View File

@ -2054,7 +2054,7 @@ export type GetStreamMonitoringDetailsQuery = {
totalShots: number; totalShots: number;
makePercentage: number; makePercentage: number;
elapsedTime?: number | null; elapsedTime?: number | null;
homographyHistory: Array<{ currentHomography?: {
__typename?: "HomographyInfoGQL"; __typename?: "HomographyInfoGQL";
crop: { crop: {
__typename?: "BoundingBoxGQL"; __typename?: "BoundingBoxGQL";
@ -2079,7 +2079,7 @@ export type GetStreamMonitoringDetailsQuery = {
bottomSide: { __typename?: "IntPoint2D"; x: number; y: number }; bottomSide: { __typename?: "IntPoint2D"; x: number; y: number };
bottomRight: { __typename?: "IntPoint2D"; x: number; y: number }; bottomRight: { __typename?: "IntPoint2D"; x: number; y: number };
}; };
}>; } | null;
stream?: { stream?: {
__typename?: "UploadStreamGQL"; __typename?: "UploadStreamGQL";
linksRequested: number; linksRequested: number;
@ -3686,7 +3686,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
totalShots totalShots
makePercentage makePercentage
elapsedTime elapsedTime
homographyHistory { currentHomography {
crop { crop {
left left
top top

View File

@ -4,7 +4,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
totalShots totalShots
makePercentage makePercentage
elapsedTime elapsedTime
homographyHistory { currentHomography {
crop { crop {
left left
top top