add current homography operation
All checks were successful
Tests / Tests (pull_request) Successful in 6s
All checks were successful
Tests / Tests (pull_request) Successful in 6s
This commit is contained in:
parent
2bdfcb994e
commit
e0b150aa2a
@ -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
|
||||||
|
@ -4,7 +4,7 @@ query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
|||||||
totalShots
|
totalShots
|
||||||
makePercentage
|
makePercentage
|
||||||
elapsedTime
|
elapsedTime
|
||||||
homographyHistory {
|
currentHomography {
|
||||||
crop {
|
crop {
|
||||||
left
|
left
|
||||||
top
|
top
|
||||||
|
Loading…
Reference in New Issue
Block a user